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

pop, drop & get with basic range feature for stringlist #514

Draft
wants to merge 22 commits into
base: master
Choose a base branch
from

Commits on Oct 10, 2021

  1. Configuration menu
    Copy the full SHA
    933a367 View commit details
    Browse the repository at this point in the history
  2. changed name

    aman-godara committed Oct 10, 2021
    Configuration menu
    Copy the full SHA
    ea46f19 View commit details
    Browse the repository at this point in the history

Commits on Oct 15, 2021

  1. Configuration menu
    Copy the full SHA
    c790494 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    e446e7a View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    bfad13d View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    00de2b7 View commit details
    Browse the repository at this point in the history
  5. Configuration menu
    Copy the full SHA
    92d5f0d View commit details
    Browse the repository at this point in the history
  6. Configuration menu
    Copy the full SHA
    1468fb6 View commit details
    Browse the repository at this point in the history
  7. corrected a typo

    aman-godara committed Oct 15, 2021
    Configuration menu
    Copy the full SHA
    937fac2 View commit details
    Browse the repository at this point in the history
  8. Configuration menu
    Copy the full SHA
    f60dd9e View commit details
    Browse the repository at this point in the history
  9. Configuration menu
    Copy the full SHA
    88a1abb View commit details
    Browse the repository at this point in the history
  10. Configuration menu
    Copy the full SHA
    ccd6dff View commit details
    Browse the repository at this point in the history
  11. some minor changes

    aman-godara committed Oct 15, 2021
    Configuration menu
    Copy the full SHA
    2e216c8 View commit details
    Browse the repository at this point in the history
  12. rename capture_popped to popped_strings

    Co-authored-by: Emanuele Pagone <[email protected]>
    aman-godara and epagone committed Oct 15, 2021
    Configuration menu
    Copy the full SHA
    5d24c0c View commit details
    Browse the repository at this point in the history
  13. Configuration menu
    Copy the full SHA
    48c94dc View commit details
    Browse the repository at this point in the history
  14. removing redundant naming convention

    Co-authored-by: Emanuele Pagone <[email protected]>
    aman-godara and epagone committed Oct 15, 2021
    Configuration menu
    Copy the full SHA
    980c18a View commit details
    Browse the repository at this point in the history
  15. Configuration menu
    Copy the full SHA
    e935ea1 View commit details
    Browse the repository at this point in the history
  16. Configuration menu
    Copy the full SHA
    e34cce2 View commit details
    Browse the repository at this point in the history
  17. some minor improvements

    aman-godara committed Oct 15, 2021
    Configuration menu
    Copy the full SHA
    2b3a5ef View commit details
    Browse the repository at this point in the history

Commits on Dec 25, 2021

  1. Minor refactoring

    aman-godara committed Dec 25, 2021
    Configuration menu
    Copy the full SHA
    29f9880 View commit details
    Browse the repository at this point in the history

Commits on Dec 26, 2021

  1. Add strides feature to get function

    get_engine func takes an integer stride_vector which decides the number
    of strides to take between indexes.
    
    get_range_idx func takes stride of type stringlist_index_type:
       fidx(+3) means takes +3 as stride (jump 3 indexes to right)
       fidx(-3) means takes -3 as stride (jump 3 indexes to left)
    
       bidx(+3) means takes -3 as stride (jump 3 indexes to left)
       bidx(-3) means takes +3 as stride (jump 3 indexes to right)
    aman-godara committed Dec 26, 2021
    Configuration menu
    Copy the full SHA
    207c1fb View commit details
    Browse the repository at this point in the history

Commits on Dec 28, 2021

  1. Add get_impl interface in the middle

    get_impl comes in the middle of get_engine and get_idx routines
    
    This allows to get i-th element inside the module using integer indexes
    aman-godara committed Dec 28, 2021
    Configuration menu
    Copy the full SHA
    e6b6143 View commit details
    Browse the repository at this point in the history