Sha256: 23c537ceb43656ce5ad71317af9066e7bbc9f8159f3f52b3e93f89aeea26104c

Contents?: true

Size: 694 Bytes

Versions: 7

Compression:

Stored size: 694 Bytes

Contents

* RENAME: add prefix, suffix and lambda renaming
  
        (rename :suppliers, [:name, :city], :prefix => "supplier_")
        (rename :suppliers, [:name, :city], :suffix => "_sup")
        (rename :suppliers, [:name, :city], lambda{|name| name.upcase}) 

* WRAP: provide a multi-wrapping ability?

        (wrap (wrap :supplies, [:a, :b], :x), [:x, :c], :y)
         => (wrap :supplies, :x => [:a, :b], :y => [:x, :c])

    But this would only work with Ruby 1.9 as the hash order would be important
    as such

* GROUP: provide a multi-grouping ability?

    Similar to wrap, with same limitation.
  
* Add PIVOT and UNPIVOT operators

* Find a way to complete the description of Quota...  

Version data entries

7 entries across 7 versions & 1 rubygems

Version Path
alf-0.12.2 TODO.md
alf-0.12.1 TODO.md
alf-0.12.0 TODO.md
alf-0.11.1 TODO.md
alf-0.11.0 TODO.md
alf-0.10.1 TODO.md
alf-0.10.0 TODO.md