Tagged Questions

3
votes
4answers
132 views

Impementation of the Ruby <=> Combinator

Not infrequently, one wants to implement the <=> (comparison, or "spaceship") operator on a product data type, i.e., a class with multiple fields (all of which (we hope!) alr …
1
vote
2answers
132 views

Combinator logic axioms

I'm carrying out some experiments in theorem proving with combinator logic, which is looking promising, but there's one stumbling block: it has been pointed out that in combinator …
1
vote
1answer
76 views

parser combinator: how to terminate repetition on keyword

I'm trying to figure out how to terminate a repetition of words using a keyword. An example: class CAQueryLanguage extends JavaTokenParsers { def expression = ("START" ~ words …
1
vote
2answers
80 views

How do I get the sum of all content when parsing an XML tag in Ruby?

I have some XHTML (but really any XML will do) like this: <h1> Hello<span class='punctuation'>,</span> <span class='noun'>World<span class='punctuat …
7
votes
5answers
466 views

Good explanation of “Combinators” (For non mathematicians)

Anyone got a good explanation of "combinators" (Y-combinators etc. and NOT the company) I'm looking for one for the practical programmer who understands recursion and higher-order …
3
votes
1answer
379 views

Scala combinator parsers - distinguish between number strings and variable strings

Hi, I'm doing Cay Horstmann's combinator parser exercises, I wonder about the best way to distinguish between strings that represent numbers and strings that represent variables i …
5
votes
6answers
577 views

Python implementation of Parsec?

I recently wrote a parser in Python using Ply (it's a python reimplementation of yacc). When I was almost done with the parser I discovered that the grammar I need to parse requir …