Run two parsers in succession, only keeping the result of the second one.
run(skip1st(spaces)(int))(" 123") // => Ok(123)run(int)(" 123") // => Err(...)
skip1st
Run two parsers in succession, only keeping the result of the second one.
See
skip1st
.