Skip to content
  • Mark OLESEN's avatar
    ENH: minor de-clutter of List, DynamicList, DynamicField (#2385) · 42fe95a6
    Mark OLESEN authored
    - do not need contruct or move assign from SortableList.
      Rarely (never) used and can simply treat like a normal list
      by applying shrink beforehand.
    
    - make append() methods return void instead of returning self, which
      makes it easier to derive from. Having them return self was a bit of
      an original design mistake.
      Chaining appends do not actually occur anywhere. Even if they were
      to be used, would not want to rely on them (fear of slicing on any
      derived classes).
    
    BUG: IndirectList iterator comparison loses constness
    42fe95a6