Sha256: bb9afe0c1c853efd6e7feb9ce95213e848fa1f058cd81595570de5906e151726

Contents?: true

Size: 693 Bytes

Versions: 1

Compression:

Stored size: 693 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-wraping 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

1 entries across 1 versions & 1 rubygems

Version Path
alf-0.9.3 TODO.md