class Concurrent::Promises::InternalStates::Fulfilled

@!visibility private

def apply(args, block)

def apply(args, block)
  block.call value, *args
end

def fulfilled?

def fulfilled?
  true
end

def initialize(value)

def initialize(value)
  @Value = value
end

def reason

def reason
  nil
end

def to_sym

def to_sym
  :fulfilled
end

def value

def value
  @Value
end