Sha256: ac4b6a53164b58eb53bdfd7f26c5b9a10f164f5395ac10eda4ab9fdda97d7ae1

Contents?: true

Size: 177 Bytes

Versions: 1

Compression:

Stored size: 177 Bytes

Contents

module Interceptors
  module DS
    class Node
      attr_accessor :next, :item

      def initialize(item)
        @item = item
        @next = nil
      end
    end
  end
end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
interceptors-0.1.1 lib/interceptors/ds/node.rb