Sha256: 340df679c88a4d12641bed94758802208531069ec249fdd7aee52742dec26326

Contents?: true

Size: 267 Bytes

Versions: 11

Compression:

Stored size: 267 Bytes

Contents

# frozen_string_literal: true

module Kind
  module Either::Methods
    def Left(value)
      Either::Left[value]
    end

    def Right(value)
      Either::Right[value]
    end

    def self.included(base)
      base.send(:private, :Left, :Right)
    end
  end
end

Version data entries

11 entries across 11 versions & 1 rubygems

Version Path
kind-5.10.0 lib/kind/either/methods.rb
kind-5.9.0 lib/kind/either/methods.rb
kind-5.8.1 lib/kind/either/methods.rb
kind-5.8.0 lib/kind/either/methods.rb
kind-5.7.0 lib/kind/either/methods.rb
kind-5.6.0 lib/kind/either/methods.rb
kind-5.5.0 lib/kind/either/methods.rb
kind-5.4.1 lib/kind/either/methods.rb
kind-5.4.0 lib/kind/either/methods.rb
kind-5.3.0 lib/kind/either/methods.rb
kind-5.2.0 lib/kind/either/methods.rb