Guest User

Untitled

a guest
Apr 26th, 2018
81
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.29 KB | None | 0 0
  1. public static class PartialReader extends AFn{
  2. public Object invoke(Object reader, Object leftbracket) throws Exception{
  3. PushbackReader r = (PushbackReader) reader;
  4. IPersistentList tempList = PersistentList.create(readDelimitedList(']', r, true));
  5. return tempList.cons(PARTIAL);
  6. }
  7. }
Add Comment
Please, Sign In to add comment