HashMap[K1, HashMap[K2, HashMap[K3, HashMap[K4, V]]]]
var hm4 = new HashMap4[Int, String, Int, String, Float]
hm4[1, "one", 11, "un"] = 1.0
hm4[2, "two", 22, "deux"] = 2.0
assert hm4[1, "one", 11, "un"] == 1.0
assert hm4[2, "not-two", 22, "deux"] == null
more_collections $ HashMap4 :: core_serialize_to
Actual serialization ofself
to serializer
more_collections $ HashMap4 :: from_deserializer
Create an instance of this class from thedeserializer
serialization :: Serializable :: accept_inspect_serializer_core
serialization :: Serializable :: accept_json_serializer
Refinable service to customize the serialization of this class to JSONserialization :: Serializable :: accept_msgpack_attribute_counter
Hook to customize the behavior of theAttributeCounter
serialization :: Serializable :: accept_msgpack_serializer
Hook to customize the serialization of this class to MessagePackserialization :: Serializable :: add_to_bundle
Called by[]=
to dynamically choose the appropriate method according
core :: Object :: class_factory
Implementation used byget_class
to create the specific class.
serialization :: Serializable :: core_serialize_to
Actual serialization ofself
to serializer
core :: Object :: defaultinit
serialization :: Serializable :: from_deserializer
Create an instance of this class from thedeserializer
core :: Object :: is_same_instance
Return true ifself
and other
are the same instance (i.e. same identity).
core :: Object :: is_same_serialized
Isself
the same as other
in a serialization context?
core :: Object :: is_same_type
Return true ifself
and other
have the same dynamic type.
serialization :: Serializable :: msgpack_extra_array_items
Hook to request a larger than usual metadata arraycore :: Object :: native_class_name
The class name of the object in CString format.core :: Object :: output_class_name
Display class name on stdout (debug only).serialization :: Serializable :: serialize_msgpack
Serializeself
to MessagePack bytes
serialization :: Serializable :: serialize_to
Serializeself
to serializer
serialization :: Serializable :: serialize_to_json
Serializeself
to JSON
serialization :: Serializable :: serialize_to_or_delay
Accept references or force direct serialization (usingserialize_to
)
serialization :: Serializable :: to_pretty_json
Serializeself
to plain pretty JSON
Serializer::serialize
# Simple way to store an `HashMap[K1, HashMap[K2, HashMap[K3, HashMap[K4, V]]]]`
#
# ~~~~
# var hm4 = new HashMap4[Int, String, Int, String, Float]
# hm4[1, "one", 11, "un"] = 1.0
# hm4[2, "two", 22, "deux"] = 2.0
# assert hm4[1, "one", 11, "un"] == 1.0
# assert hm4[2, "not-two", 22, "deux"] == null
# ~~~~
class HashMap4[K1, K2, K3, K4, V]
private var level1 = new HashMap[K1, HashMap3[K2, K3, K4, V]]
# Return the value associated to the keys `k1`, `k2`, `k3` and `k4`.
# Return `null` if no such a value.
fun [](k1: K1, k2: K2, k3: K3, k4: K4): nullable V
do
var level1 = self.level1
var level2 = level1.get_or_null(k1)
if level2 == null then return null
return level2[k2, k3, k4]
end
# Set `v` the value associated to the keys `k1`, `k2`, `k3` and `k4`.
fun []=(k1: K1, k2: K2, k3: K3, k4: K4, v: V)
do
var level1 = self.level1
var level2 = level1.get_or_null(k1)
if level2 == null then
level2 = new HashMap3[K2, K3, K4, V]
level1[k1] = level2
end
level2[k2, k3, k4] = v
end
# Remove the item at `k1`, `k2`, `k3` and `k4`
fun remove_at(k1: K1, k2: K2, k3: K3, k4: K4)
do
var level1 = self.level1
var level2 = level1.get_or_null(k1)
if level2 == null then return
level2.remove_at(k2, k3, k4)
end
# Is there a value at `k1, k2, k3, k4`?
fun has(k1: K1, k2: K2, k3: K3, k4: K4): Bool
do
if not level1.keys.has(k1) then return false
return level1[k1].has(k2, k3, k4)
end
# Remove all items
fun clear do level1.clear
end
lib/more_collections/more_collections.nit:247,1--300,3