Match pattern begin func end, return the result of func.
import sdpc.parsers; auto i = "(asdf)"; auto r = between!(token!"(", token!"asdf", token!")")(i); assert(r.ok); assert(!r.cont.length);
See Implementation
Match pattern begin func end, return the result of func.