Class: Literal::DataStructure Private

Inherits:
Object
  • Object
show all
Extended by:
Properties
Defined in:
lib/literal/data_structure.rb

This class is part of a private API. You should avoid using this class if possible, as it may be removed or be changed in the future.

Direct Known Subclasses

Data, Struct

Constant Summary

Constants included from Types

Types::CallableType, Types::LambdaType, Types::NilableBooleanType, Types::NilableCallableType, Types::NilableJSONDataType, Types::NilableLambdaType, Types::NilableProcableType, Types::ProcableType

Class Method Summary collapse

Instance Method Summary collapse

Methods included from Properties

extended, initialize, literal_properties, prop, prop?

Methods included from Types

#_Any, #_Any?, #_Array, #_Array?, #_Boolean, #_Boolean?, #_Callable, #_Callable?, #_Class, #_Class?, #_Constraint, #_Constraint?, #_Date, #_Date?, #_Deferred, #_Deferred?, #_Descendant, #_Descendant?, #_Enumerable, #_Enumerable?, #_Falsy, #_Float, #_Float?, #_Frozen, #_Frozen?, #_Hash, #_Hash?, #_Integer, #_Integer?, #_Interface, #_Interface?, #_Intersection, #_Intersection?, #_JSONData, #_JSONData?, #_Kind, #_Lambda, #_Lambda?, #_Map, #_Map?, #_Never, #_Nilable, #_Not, #_Pattern, #_Predicate, #_Procable, #_Procable?, #_Range, #_Range?, #_SameObject, #_SameObject?, #_Set, #_Set?, #_String, #_String?, #_Symbol, #_Symbol?, #_TaggedUnion, #_TaggedUnion?, #_Time, #_Time?, #_Truthy, #_Tuple, #_Tuple?, #_Union, #_Union?, #_Void

Class Method Details

.__generate_literal_methods__(new_property, buffer = +"")) ⇒ Object

This method is part of a private API. You should avoid using this method if possible, as it may be removed or be changed in the future.



58
59
60
61
62
63
# File 'lib/literal/data_structure.rb', line 58

def self.__generate_literal_methods__(new_property, buffer = +"")
  super
  literal_properties.generate_hash(buffer)
  literal_properties.generate_eq(buffer)
  buffer
end

.from_pack(payload) ⇒ Object

This method is part of a private API. You should avoid using this method if possible, as it may be removed or be changed in the future.



7
8
9
10
11
# File 'lib/literal/data_structure.rb', line 7

def self.from_pack(payload)
  object = allocate
  object.marshal_load(payload)
  object
end

Instance Method Details

#==(other) ⇒ Object Also known as: eql?

This method is part of a private API. You should avoid using this method if possible, as it may be removed or be changed in the future.



52
53
54
# File 'lib/literal/data_structure.rb', line 52

def ==(other)
  self.class === other && other.class.literal_properties.empty?
end

#as_packObject

This method is part of a private API. You should avoid using this method if possible, as it may be removed or be changed in the future.



28
29
30
# File 'lib/literal/data_structure.rb', line 28

def as_pack
  marshal_dump
end

#deconstructObject

This method is part of a private API. You should avoid using this method if possible, as it may be removed or be changed in the future.



19
20
21
# File 'lib/literal/data_structure.rb', line 19

def deconstruct
  to_h.values
end

#deconstruct_keys(keys) ⇒ Object

This method is part of a private API. You should avoid using this method if possible, as it may be removed or be changed in the future.



23
24
25
26
# File 'lib/literal/data_structure.rb', line 23

def deconstruct_keys(keys)
  h = to_h
  keys ? h.slice(*keys) : h
end

#hashObject

This method is part of a private API. You should avoid using this method if possible, as it may be removed or be changed in the future.



48
49
50
# File 'lib/literal/data_structure.rb', line 48

def hash
  self.class.hash
end

#marshal_dumpObject

This method is part of a private API. You should avoid using this method if possible, as it may be removed or be changed in the future.

required method for Marshal compatibility



44
45
46
# File 'lib/literal/data_structure.rb', line 44

def marshal_dump
  [1, to_h, frozen?].freeze
end

#marshal_load(payload) ⇒ Object

This method is part of a private API. You should avoid using this method if possible, as it may be removed or be changed in the future.

required method for Marshal compatibility



33
34
35
36
37
38
39
40
41
# File 'lib/literal/data_structure.rb', line 33

def marshal_load(payload)
  _version, attributes, was_frozen = payload

  attributes.each do |key, value|
    instance_variable_set("@#{key}", value)
  end

  freeze if was_frozen
end

#to_hObject Also known as: to_hash

This method is part of a private API. You should avoid using this method if possible, as it may be removed or be changed in the future.



13
14
15
# File 'lib/literal/data_structure.rb', line 13

def to_h
  {}
end