Skip to content

Instantly share code, notes, and snippets.

@jfinkels
Created January 13, 2010 20:42
Show Gist options
  • Save jfinkels/276565 to your computer and use it in GitHub Desktop.
Save jfinkels/276565 to your computer and use it in GitHub Desktop.
public class OnesMutationFunction extends ImmutableElementsListMutationFunction<Byte> {
@Override
protected Byte mutated(final Byte bit) {
return (byte) (1 - bit);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment