Sha256: 00b5a1039e618cf876ff2298da838b12af869f119b0dd703f7cf629b0e9dae72

Contents?: true

Size: 159 Bytes

Versions: 1

Compression:

Stored size: 159 Bytes

Contents

module Furnace
  class Type::Bottom < Type::Top
    def subtype_of?(other)
      other.is_a?(Type::Top)
    end

    def to_s
      'bottom'
    end
  end
end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
furnace-0.4.0.beta.2 lib/furnace/type/bottom.rb