Sha256: 585bd727b2593b95da5347f870d7af8ef4e040d39d2c41c0b443c6ff6594b26a

Contents?: true

Size: 391 Bytes

Versions: 58

Compression:

Stored size: 391 Bytes

Contents

# encoding: utf-8
module FeduxOrgStdlib
  module Roles
    # Included if class can be compared by name
    module ComparableByName
      include Comparable

      # @private
      def hash
        name.hash
      end

      # @private
      def eql?(other)
        name.eql? other.name
      end

      # @private
      def <=>(other)
        name <=> other.name
      end
    end
  end
end

Version data entries

58 entries across 58 versions & 1 rubygems

Version Path
fedux_org-stdlib-0.8.6 lib/fedux_org_stdlib/roles/comparable_by_name.rb
fedux_org-stdlib-0.8.5 lib/fedux_org_stdlib/roles/comparable_by_name.rb
fedux_org-stdlib-0.8.4 lib/fedux_org_stdlib/roles/comparable_by_name.rb
fedux_org-stdlib-0.8.3 lib/fedux_org_stdlib/roles/comparable_by_name.rb
fedux_org-stdlib-0.8.0 lib/fedux_org_stdlib/roles/comparable_by_name.rb
fedux_org-stdlib-0.7.33 lib/fedux_org_stdlib/roles/comparable_by_name.rb
fedux_org-stdlib-0.7.31 lib/fedux_org_stdlib/roles/comparable_by_name.rb
fedux_org-stdlib-0.7.30 lib/fedux_org_stdlib/roles/comparable_by_name.rb
fedux_org-stdlib-0.7.29 lib/fedux_org_stdlib/roles/comparable_by_name.rb
fedux_org-stdlib-0.7.28 lib/fedux_org_stdlib/roles/comparable_by_name.rb
fedux_org-stdlib-0.7.27 lib/fedux_org_stdlib/roles/comparable_by_name.rb
fedux_org-stdlib-0.7.26 lib/fedux_org_stdlib/roles/comparable_by_name.rb
fedux_org-stdlib-0.7.25 lib/fedux_org_stdlib/roles/comparable_by_name.rb
fedux_org-stdlib-0.7.24 lib/fedux_org_stdlib/roles/comparable_by_name.rb
fedux_org-stdlib-0.7.23 lib/fedux_org_stdlib/roles/comparable_by_name.rb
fedux_org-stdlib-0.7.22 lib/fedux_org_stdlib/roles/comparable_by_name.rb
fedux_org-stdlib-0.7.21 lib/fedux_org_stdlib/roles/comparable_by_name.rb
fedux_org-stdlib-0.7.20 lib/fedux_org_stdlib/roles/comparable_by_name.rb