Sha256: 998b89561c067ac5f3fe8845bdf767fe420718cf3aebe0180cfd5723a03cab31

Contents?: true

Size: 265 Bytes

Versions: 1

Compression:

Stored size: 265 Bytes

Contents

module Tap
  class App
    
    # The base of the application call stack.
    class Stack
      
      # Calls the node with the inputs:
      #
      #   node.call(*inputs)
      #
      def call(node, inputs)
        node.call(*inputs)
      end
    end
  end
end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
tap-0.17.0 lib/tap/app/stack.rb