Skip to content

Instantly share code, notes, and snippets.

@ashkrit
Created June 28, 2020 15:00
Show Gist options
  • Select an option

  • Save ashkrit/ab020ff6491b38b4b589851fab6c5bd2 to your computer and use it in GitHub Desktop.

Select an option

Save ashkrit/ab020ff6491b38b4b589851fab6c5bd2 to your computer and use it in GitHub Desktop.
@Test
public void save_function() throws Exception {
Function<String, String> upper = x -> x.toUpperCase();
try (ByteArrayOutputStream bos = new ByteArrayOutputStream();
ObjectOutputStream os = new ObjectOutputStream(bos)) {
os.writeObject(upper);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment