Sha256: e2c2b390f0d7aaabcb5c58629db9a96ef1657d2a4d529165535804fb06222cfa

Contents?: true

Size: 338 Bytes

Versions: 1

Compression:

Stored size: 338 Bytes

Contents

= then

then is fork for method chain.

    require 'then'

    [1,2,3,3].then{|list|
      p list
      p list.reverse
    }.uniq.then{ |list|
      p list
      p list.reverse
    }

    # [1, 2, 3, 3]
    # [3, 3, 2, 1]
    # [1, 2, 3]
    # [3, 2, 1]

== Copyright

Copyright (c) 2011 hitode909. See LICENSE.txt for
further details.

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
then-1.0.0 README.rdoc