Class: T::Types::TypedSet

Inherits:
TypedEnumerable show all
Defined in:
lib/types/types/typed_set.rb

Direct Known Subclasses

Untyped

Defined Under Namespace

Classes: Untyped

Instance Method Summary collapse

Methods inherited from TypedEnumerable

#build_type, #describe_obj, #initialize, #type

Methods inherited from Base

#==, #build_type, #describe_obj, #error_message_for_obj, #error_message_for_obj_recursive, #hash, method_added, #subtype_of?, #to_s, #validate!

Constructor Details

This class inherits a constructor from T::Types::TypedEnumerable

Instance Method Details

#nameObject

overrides Base



11
12
13
# File 'lib/types/types/typed_set.rb', line 11

def name
  "T::Set[#{type.name}]"
end

#new(*args) ⇒ Object



31
32
33
34
35
36
# File 'lib/types/types/typed_set.rb', line 31

def new(*args)
  # Fine for this to blow up, because hopefully if they're trying to make a
  # Set, they don't mind putting (or already have put) a `require 'set'` in
  # their program directly.
  Set.new(*T.unsafe(args))
end

#recursively_valid?(obj) ⇒ Boolean

overrides Base

Returns:



16
17
18
19
20
21
# File 'lib/types/types/typed_set.rb', line 16

def recursively_valid?(obj)
  # Re-implements non_forcing_is_a?
  return false if Object.autoload?(:Set) # Set is meant to be autoloaded but not yet loaded, this value can't be a Set
  return false unless Object.const_defined?(:Set) # Set is not loaded yet
  obj.is_a?(Set) && super
end

#underlying_classObject



6
7
8
# File 'lib/types/types/typed_set.rb', line 6

def underlying_class
  Hash
end

#valid?(obj) ⇒ Boolean

overrides Base

Returns:



24
25
26
27
28
29
# File 'lib/types/types/typed_set.rb', line 24

def valid?(obj)
  # Re-implements non_forcing_is_a?
  return false if Object.autoload?(:Set) # Set is meant to be autoloaded but not yet loaded, this value can't be a Set
  return false unless Object.const_defined?(:Set) # Set is not loaded yet
  obj.is_a?(Set)
end