Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Input trait #45

Merged
merged 63 commits into from Aug 31, 2016
Merged

Input trait #45

merged 63 commits into from Aug 31, 2016

Commits on Aug 31, 2016

  1. WIP

    m4rw3r committed Aug 31, 2016
    Copy the full SHA
    e9e2964 View commit details
    Browse the repository at this point in the history
  2. Input trait: Made it possible to be even more generic over the input,…

    … the buffer-return does not need to be tied directly to the input itself
    m4rw3r committed Aug 31, 2016
    Copy the full SHA
    05fc3c2 View commit details
    Browse the repository at this point in the history
  3. Updated combinators

    * State::Incomplete now also carries the input state, needed to be able
      to backtrack on incomplete
    m4rw3r committed Aug 31, 2016
    Copy the full SHA
    64bec6a View commit details
    Browse the repository at this point in the history
  4. Updated ascii and parse_only

    m4rw3r committed Aug 31, 2016
    Copy the full SHA
    2d68c4f View commit details
    Browse the repository at this point in the history
  5. Copy the full SHA
    3c041ae View commit details
    Browse the repository at this point in the history
  6. Copy the full SHA
    a829059 View commit details
    Browse the repository at this point in the history
  7. Copy the full SHA
    37479cc View commit details
    Browse the repository at this point in the history
  8. Copy the full SHA
    82eeed4 View commit details
    Browse the repository at this point in the history
  9. Copy the full SHA
    98443f3 View commit details
    Browse the repository at this point in the history
  10. Copy the full SHA
    001e142 View commit details
    Browse the repository at this point in the history
  11. Copy the full SHA
    a8711c4 View commit details
    Browse the repository at this point in the history
  12. Updated benchmarks

    m4rw3r committed Aug 31, 2016
    Copy the full SHA
    2e05b8f View commit details
    Browse the repository at this point in the history
  13. Updated buffers

    m4rw3r committed Aug 31, 2016
    Copy the full SHA
    0ceda8d View commit details
    Browse the repository at this point in the history
  14. WIP on removing incomplete

    m4rw3r committed Aug 31, 2016
    Copy the full SHA
    4e6ba8e View commit details
    Browse the repository at this point in the history
  15. WIP

    m4rw3r committed Aug 31, 2016
    Copy the full SHA
    f5f5e97 View commit details
    Browse the repository at this point in the history
  16. Indent, #inline and comments

    m4rw3r committed Aug 31, 2016
    Copy the full SHA
    4c7c3a3 View commit details
    Browse the repository at this point in the history
  17. Copy the full SHA
    46ae0aa View commit details
    Browse the repository at this point in the history
  18. Copy the full SHA
    46a972c View commit details
    Browse the repository at this point in the history
  19. Added Buffer::iter

    m4rw3r committed Aug 31, 2016
    Copy the full SHA
    f9cbedd View commit details
    Browse the repository at this point in the history
  20. Input for ByteTendril

    m4rw3r committed Aug 31, 2016
    Copy the full SHA
    c58c51c View commit details
    Browse the repository at this point in the history
  21. Copy the full SHA
    0caabd7 View commit details
    Browse the repository at this point in the history
  22. Copy the full SHA
    6fb259f View commit details
    Browse the repository at this point in the history
  23. Copy the full SHA
    94297d9 View commit details
    Browse the repository at this point in the history
  24. Input tests

    m4rw3r committed Aug 31, 2016
    Copy the full SHA
    29d2855 View commit details
    Browse the repository at this point in the history
  25. Copy the full SHA
    8b87bda View commit details
    Browse the repository at this point in the history
  26. Updated rustdoc

    m4rw3r committed Aug 31, 2016
    Copy the full SHA
    8b04012 View commit details
    Browse the repository at this point in the history
  27. Use Input::* for parse! macro

    m4rw3r committed Aug 31, 2016
    Copy the full SHA
    7c5f000 View commit details
    Browse the repository at this point in the history
  28. Fixed compile tests

    m4rw3r committed Aug 31, 2016
    Copy the full SHA
    a77456a View commit details
    Browse the repository at this point in the history
  29. Copy the full SHA
    3289ce5 View commit details
    Browse the repository at this point in the history
  30. Copy the full SHA
    e2a062b View commit details
    Browse the repository at this point in the history
  31. clippy

    m4rw3r committed Aug 31, 2016
    Copy the full SHA
    c6f3203 View commit details
    Browse the repository at this point in the history
  32. Clippy as feature

    m4rw3r committed Aug 31, 2016
    Copy the full SHA
    5256a50 View commit details
    Browse the repository at this point in the history
  33. Macros: Reversed use of Universal Function Call syntax for Input

    This caused issues due to `Input` inside of the function body not
    being considered the same as the actual type supplied to the function.
    m4rw3r committed Aug 31, 2016
    Copy the full SHA
    578492d View commit details
    Browse the repository at this point in the history
  34. Copy the full SHA
    b4c209a View commit details
    Browse the repository at this point in the history
  35. Primitives: Slight doc updates

    m4rw3r committed Aug 31, 2016
    Copy the full SHA
    f6c7834 View commit details
    Browse the repository at this point in the history
  36. Tests: Combinators

    m4rw3r committed Aug 31, 2016
    Copy the full SHA
    f1696b6 View commit details
    Browse the repository at this point in the history
  37. Tests: parsers

    m4rw3r committed Aug 31, 2016
    Copy the full SHA
    71f6ed9 View commit details
    Browse the repository at this point in the history
  38. Tests: ParseResult

    m4rw3r committed Aug 31, 2016
    Copy the full SHA
    af07b42 View commit details
    Browse the repository at this point in the history
  39. Moved ParseResult to types

    m4rw3r committed Aug 31, 2016
    Copy the full SHA
    c9c0d54 View commit details
    Browse the repository at this point in the history
  40. Copy the full SHA
    47e8512 View commit details
    Browse the repository at this point in the history
  41. Copy the full SHA
    d642e76 View commit details
    Browse the repository at this point in the history
  42. Copy the full SHA
    107c0cf View commit details
    Browse the repository at this point in the history
  43. Copy the full SHA
    4000dbf View commit details
    Browse the repository at this point in the history
  44. Copy the full SHA
    4ca3312 View commit details
    Browse the repository at this point in the history
  45. doc

    m4rw3r committed Aug 31, 2016
    Copy the full SHA
    701ab9d View commit details
    Browse the repository at this point in the history
  46. parse: Added parse_only_str

    m4rw3r committed Aug 31, 2016
    Copy the full SHA
    b93d3b4 View commit details
    Browse the repository at this point in the history
  47. Tests: combinators

    m4rw3r committed Aug 31, 2016
    Copy the full SHA
    a7e6503 View commit details
    Browse the repository at this point in the history
  48. Doc

    m4rw3r committed Aug 31, 2016
    Copy the full SHA
    a058d69 View commit details
    Browse the repository at this point in the history
  49. Copy the full SHA
    3074472 View commit details
    Browse the repository at this point in the history
  50. Copy the full SHA
    42dd656 View commit details
    Browse the repository at this point in the history
  51. Updated changelog

    m4rw3r committed Aug 31, 2016
    Copy the full SHA
    ae9b9d0 View commit details
    Browse the repository at this point in the history
  52. Copy the full SHA
    21257ed View commit details
    Browse the repository at this point in the history
  53. Implemented run_parser

    m4rw3r committed Aug 31, 2016
    Copy the full SHA
    5641525 View commit details
    Browse the repository at this point in the history
  54. Updated changelog

    m4rw3r committed Aug 31, 2016
    Copy the full SHA
    2b5f519 View commit details
    Browse the repository at this point in the history
  55. Parsers: skip_while

    m4rw3r committed Aug 31, 2016
    Copy the full SHA
    f101312 View commit details
    Browse the repository at this point in the history
  56. Updated bitflags and conv

    m4rw3r committed Aug 31, 2016
    Copy the full SHA
    bf5acc5 View commit details
    Browse the repository at this point in the history
  57. Copy the full SHA
    a882292 View commit details
    Browse the repository at this point in the history
  58. Copy the full SHA
    8bbbb83 View commit details
    Browse the repository at this point in the history
  59. bench: Fixed compiler warning

    m4rw3r committed Aug 31, 2016
    Copy the full SHA
    5e4fbd1 View commit details
    Browse the repository at this point in the history
  60. Copy the full SHA
    08704f3 View commit details
    Browse the repository at this point in the history
  61. Copy the full SHA
    b23d182 View commit details
    Browse the repository at this point in the history
  62. combinators::bounded: Defined behavior for Range when start == end an…

    …d fixed overflow errors
    m4rw3r committed Aug 31, 2016
    Copy the full SHA
    de60bd7 View commit details
    Browse the repository at this point in the history
  63. Changelog: Added bugfixes

    m4rw3r committed Aug 31, 2016
    Copy the full SHA
    f037f09 View commit details
    Browse the repository at this point in the history