sbool tok_isSpacedDash(LS tok) { ret l(tok) == 3 && isSpace(first(tok)) && isSpace(last(tok)) && isDash(second(tok)); }