class Pod::Resolver::EdgeAndPlatform

Attributes

edge[R]
target_platform[R]

Public Class Methods

new(edge, target_platform) click to toggle source
# File lib/cocoapods/resolver.rb, line 559
def initialize(edge, target_platform)
  @edge = edge
  @target_platform = target_platform
end

Public Instance Methods

eql?(other) click to toggle source
# File lib/cocoapods/resolver.rb, line 565
def eql?(other)
  edge.equal?(other.edge) && target_platform.eql?(other.target_platform)
end
hash() click to toggle source
# File lib/cocoapods/resolver.rb, line 569
def hash
  edge.object_id ^ target_platform.hash
end