Methods in org.codehaus.jparsec.misc that return types with arguments of type Binary |
Parser<Binary<T>> |
Mapper.binary()
A Parser that returns a Binary instance that invokes the underlying
map method or curried constructor with the two parameters of the
Map2.map(Object, Object) method. |
Parser<Binary<T>> |
Mapper.infix(Parser<?>... operator)
A Parser that runs operator sequentially and returns a Binary instance,
which will pass along its first parameter, followed by the return values of operator ,
followed by its second parameter to the underlying map method or curried constructor. |
Parser<Binary<T>> |
Mapper.infix(Parser<?> operator)
A Parser that runs operator and returns a Binary instance,
which will pass along its first parameter, followed by the return value of operator ,
followed by its second parameter to the underlying map method or curried constructor. |