Code Monkey home page Code Monkey logo

rec's People

Contributors

dependabot-support avatar jsim2010 avatar mgeisler avatar

Stargazers

 avatar  avatar

Watchers

 avatar  avatar

Forkers

mgeisler

rec's Issues

Change Pattern construction methods

  • Change Pattern::define to Pattern::new().
  • Change Pattern::load to instead use String::parse::().
    • Ex: let pattern = Pattern::new(user_str.parse::<Rec>()?);

Will also need to update documentation to highlight correct usage of functionality.

max() causes error

Appears regex does not allow {,x} repetition. Will need to use {0,x}.

Ensure grouping of alternation is needed before applying

Currently grouping occurs when the alternation is applied. This results in regexes with just the alternation, ex: "aa" | "bb", being grouped, i.e. (?:aa|bb), even though the grouping is not needed, aa|bb. Ideally, this grouping only applies if it is necessary, ex: ("aa" | "bb") + "c" = (?:aa|bb)c.

Currently thought impossible operations

  • Atom | Element -> Ch where Element.is_atom() is true
    • PROBLEM impl** BitOr<Element> for Atom must define an Output type, which must be Rec if Element.is_atom() is false.
    • WORKAROUND Make Element an Atom; ex: Convert Class::Digit | "a" to Class::Digit | 'a'.
  • x | x where x is char or &str or String
    • PROBLEM impl BitOr for x does not use types inside crate
    • WORKAROUND Use Ch::AnyOf for union of chars and Rec::from for the others.
  • x * .. where x is char or &str or String
    • PROBLEM impl Mul<RangeFull> for x does not use types inside crate
    • WORKAROUND Use rpt to generate a RepeatRange

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.