Coder Social home page Coder Social logo

Comments (4)

lihaoyi avatar lihaoyi commented on June 8, 2024

Sounds reasonable. I'd just call it filter ^_^

On Mon, Jun 1, 2015 at 12:36 PM, Russ White [email protected]
wrote:

If this feature already exists I apologize for missing it.

It would be nice to have a built in construct for parsers with predicates
like this:
import fastparse._
object Parser {
def predicatedT(pred: T => Boolean): Parser[T] = P {
parser.flatMap(x => if (pred(x)) Pass.map(_ => x) else Fail)
}
val pDigits: Parser[Int] = P(CharIn('0' to '9').rep(1).!.map(_.toInt))
val pEven: Parser[Int] = predicated(pDigits)({x => x % 2 == 0})
val pOdd: Parser[Int] = predicated(pDigits)({x => x % 2 != 0})
}

object Run extends App {
import Parser._
println(pEven.parse("123"))
println(pEven.parse("124"))
println(pOdd.parse("123"))
println(pOdd.parse("124"))
}
Run...
Failure(predicated:0 / Fail:3 ..."", false)
Success(124, 3)
Success(123, 3)
Failure(predicated:0 / Fail:3 ..."", false)


Reply to this email directly or view it on GitHub
#23.

from fastparse.

russwyte avatar russwyte commented on June 8, 2024

That is precisely what I would suggest. :)

from fastparse.

lihaoyi avatar lihaoyi commented on June 8, 2024

Feel free to send a PR!

from fastparse.

russwyte avatar russwyte commented on June 8, 2024

I created PR #24 to add filter transformer.

from fastparse.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.