Skip to content

Instantly share code, notes, and snippets.

View aunger's full-sized avatar

Russell Aunger aunger

  • Albeit Technology LLC
View GitHub Profile
/**
* Example usage.
*/
class Example {
public static void main(String[] args) {
String example = "foo/bar/baz";
Slice<String> s = new Slice<>(example.split("/"));
}