Skip to content

Latest commit

 

History

History
26 lines (18 loc) · 989 Bytes

ToDo.md

File metadata and controls

26 lines (18 loc) · 989 Bytes

MISSING:

  • #dist:

    • re-implement the complex mode in a efficient way (memory/time/ops)
    • write (deep) tests for complex mode.
    • implement the naive mode for #dist method (single byte sequence)
    • fix naive mode relative benchmark.
    • write tests for naive mode.
  • #do, #count:

    • write tests for the current implementation of the naive mode (( naive) #do is buggy)
  • #comb

    • write simple tests, using "from" and "limit", also for naive mode.

TODO??:

  • Delayed Concatenation. An example scenario: suppose that we have obtained no match for several chunks, the snip could also become very large. we could collect multiple buffers which don't contain the sequence, therefore delaying the data concatenation; however, for now, we concatenate only the previous chunk of data with the current one, the tonto way.

  • ..