Dave DeLong

Results 101 comments of Dave DeLong

Fair enough. I would not be using the coredata branch as the basis for the 2.0 api. There are enough design flaws inherent in the v1.x implementation that a full...

The main issue it has revolves around the usage of `NSPredicate`. By its nature, a predicate is extremely flexible in terms of what structure it allows (infinite width and depth...

Thanks for reporting this. I added a unit test to parse the exact text you provided, and it seems to have no problem with it. I tried parsing it as...

Are the URLs you're parsing remote (coming in over a network connection) or local file URLs? Do you have an example of either that I could try?

Thanks @marvin-yorke. I incorporated the `portals.csv` file into the unit tests, but they're still passing on my machine. 😕

Yes, that is a problem with the data. When the parser encounters a field that starts with `"`, it assumes the field ends with the corresponding closing `"`. And then...

The convenience initializers now use a fixed encoding (`NSUTF8StringEncoding`), but this would still be an issue for `NSInputStreams` provided to the designated initializer.

Well, you could edit the code in `_DDMathOperatorInfo.m` to make the operators have the same precedence, but that would only get you half-way there. What you're really asking for is...

This could be accomplished by writing a custom Expressionizer (the thing that turns GroupedTokens into Expressions).