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

Sortedcontainerupdates #787

Merged

Commits on Jan 20, 2022

  1. Major update to sorted containers.

        Address issue 239: Dict constructors on typed data but without explicit type declarations
        should no longer return {Any,Any} items because collect is now used when explicit types
        are omitted
    
        Address issue 479: Deprecate insert!, pop!(s), introduce popfirst!, poplast!,
           ss_push!, sd_push!, smd_push!
    
        Address issue 528: push! documentation improved
    
        Address issue 667: Docs extensively cleaned up and much greater use of
          documenter.jl
    
        Address issue 669: Expanded use of tokens including a:b notation for tokens
    
        Address issue 671: Add reverse iteration
    
        Address issue 742: New union, merge, symdiff, setdiff, intersect algorithms for
        sorted containers to improve performance
    
        Address issue 726: Clarify docs on insert! (now deprecated)
    
        Address issue 767: Implement firstindex, lastindex, reverse for sorted container iteration
    
        Address issue 781: Use collect on an intermediate step
        to infer types in untyped construction of sorted containers
    
        Also, this commit cleans up the constructors and
        adds two new iteration-helper functions inclusive_key
        and exclusive_key that were useful in my own work.
    StephenVavasis committed Jan 20, 2022
    Configuration menu
    Copy the full SHA
    67d379a View commit details
    Browse the repository at this point in the history

Commits on Jan 21, 2022

  1. Configuration menu
    Copy the full SHA
    4b8c108 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    95c2478 View commit details
    Browse the repository at this point in the history

Commits on Apr 30, 2022

  1. Configuration menu
    Copy the full SHA
    2aa37f4 View commit details
    Browse the repository at this point in the history

Commits on May 19, 2022

  1. Two fixes:

      Renamed push_return_token! to push_return_semitoken!, which accurately
      describes the operation.
    
      Documented the fact that values(s) is not currently writeable.
    StephenVavasis committed May 19, 2022
    Configuration menu
    Copy the full SHA
    879703e View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    f540e4e View commit details
    Browse the repository at this point in the history

Commits on Jul 6, 2022

  1. Configuration menu
    Copy the full SHA
    1c63d2a View commit details
    Browse the repository at this point in the history

Commits on Jul 15, 2022

  1. Configuration menu
    Copy the full SHA
    ebf63ca View commit details
    Browse the repository at this point in the history