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

Collect & unzip implementation #17

Merged
merged 33 commits into from
Mar 28, 2021
Merged

Collect & unzip implementation #17

merged 33 commits into from
Mar 28, 2021

Commits on Jan 31, 2021

  1. Implement fold function

    tmaxmax committed Jan 31, 2021
    Configuration menu
    Copy the full SHA
    c3e76c3 View commit details
    Browse the repository at this point in the history
  2. Create tests

    tmaxmax committed Jan 31, 2021
    Configuration menu
    Copy the full SHA
    27e174f View commit details
    Browse the repository at this point in the history
  3. Merge pull request #8 from tmaxmax/fold

    Implement fold function
    tmaxmax authored Jan 31, 2021
    Configuration menu
    Copy the full SHA
    a76d545 View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    7d814de View commit details
    Browse the repository at this point in the history
  5. Implement and document functions based on fold.

    The functions implement are fold1 (fold_first), count, forEach (for_each), and last.
    Other changes are renamed tests and test for fold on empty iterable.
    tmaxmax committed Jan 31, 2021
    Configuration menu
    Copy the full SHA
    ef978bb View commit details
    Browse the repository at this point in the history
  6. Merge pull request #9 from tmaxmax/fold-derived

    Implement functions based on fold and add type alias Option<T> for T | null
    tmaxmax authored Jan 31, 2021
    Configuration menu
    Copy the full SHA
    a4ba1ad View commit details
    Browse the repository at this point in the history
  7. Create Rust's Result type

    tmaxmax committed Jan 31, 2021
    Configuration menu
    Copy the full SHA
    10e4dd4 View commit details
    Browse the repository at this point in the history
  8. Configuration menu
    Copy the full SHA
    c800831 View commit details
    Browse the repository at this point in the history

Commits on Feb 1, 2021

  1. Configuration menu
    Copy the full SHA
    253c2a5 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    6761503 View commit details
    Browse the repository at this point in the history
  3. Merge pull request #10 from tmaxmax/try-fold

    Implement try_fold and derivates
    tmaxmax authored Feb 1, 2021
    Configuration menu
    Copy the full SHA
    c9fe01d View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    02ed4c7 View commit details
    Browse the repository at this point in the history
  5. Configuration menu
    Copy the full SHA
    66d8e25 View commit details
    Browse the repository at this point in the history
  6. Implement map

    tmaxmax committed Feb 1, 2021
    Configuration menu
    Copy the full SHA
    d439a18 View commit details
    Browse the repository at this point in the history
  7. Merge pull request #11 from tmaxmax/map

    Implement map
    tmaxmax authored Feb 1, 2021
    Configuration menu
    Copy the full SHA
    dd07182 View commit details
    Browse the repository at this point in the history
  8. Configuration menu
    Copy the full SHA
    88bdc4f View commit details
    Browse the repository at this point in the history
  9. Configuration menu
    Copy the full SHA
    184b78b View commit details
    Browse the repository at this point in the history
  10. Merge pull request #12 from tmaxmax/cmp

    Implement comparison functions
    tmaxmax authored Feb 1, 2021
    Configuration menu
    Copy the full SHA
    35cd389 View commit details
    Browse the repository at this point in the history
  11. Made Iter the default export

    tmaxmax committed Feb 1, 2021
    Configuration menu
    Copy the full SHA
    e98355d View commit details
    Browse the repository at this point in the history
  12. Implement all and any

    tmaxmax committed Feb 1, 2021
    Configuration menu
    Copy the full SHA
    f3ec801 View commit details
    Browse the repository at this point in the history
  13. Merge pull request #13 from tmaxmax/all-any

    Implement all and any, and make documentation example runnable
    tmaxmax authored Feb 1, 2021
    Configuration menu
    Copy the full SHA
    62adf54 View commit details
    Browse the repository at this point in the history
  14. Configuration menu
    Copy the full SHA
    c6691e9 View commit details
    Browse the repository at this point in the history
  15. Remove redundant import

    tmaxmax committed Feb 1, 2021
    Configuration menu
    Copy the full SHA
    452c918 View commit details
    Browse the repository at this point in the history

Commits on Feb 2, 2021

  1. Implement python-like range

    tmaxmax committed Feb 2, 2021
    Configuration menu
    Copy the full SHA
    c6f5ad7 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    625a98b View commit details
    Browse the repository at this point in the history
  3. Merge pull request #14 from tmaxmax/sum-product-min-max

    Implement min, max, and derived methods
    tmaxmax authored Feb 2, 2021
    Configuration menu
    Copy the full SHA
    c0e32c4 View commit details
    Browse the repository at this point in the history
  4. Add infinite range overload

    tmaxmax committed Feb 2, 2021
    Configuration menu
    Copy the full SHA
    f17a475 View commit details
    Browse the repository at this point in the history
  5. Configuration menu
    Copy the full SHA
    f1284b5 View commit details
    Browse the repository at this point in the history
  6. Implement zip

    tmaxmax committed Feb 2, 2021
    Configuration menu
    Copy the full SHA
    794657b View commit details
    Browse the repository at this point in the history
  7. Create test for zip

    tmaxmax committed Feb 2, 2021
    Configuration menu
    Copy the full SHA
    7a26a65 View commit details
    Browse the repository at this point in the history
  8. Merge pull request #16 from tmaxmax/zip

    Implement zip
    tmaxmax authored Feb 2, 2021
    Configuration menu
    Copy the full SHA
    cfa14ec View commit details
    Browse the repository at this point in the history

Commits on Mar 28, 2021

  1. Configuration menu
    Copy the full SHA
    b8f142f View commit details
    Browse the repository at this point in the history
  2. Implement collect and unzip

    tmaxmax committed Mar 28, 2021
    Configuration menu
    Copy the full SHA
    4b2d8f9 View commit details
    Browse the repository at this point in the history