a dictionary which can lookup value by key, or keys by value More...

Public Member Functions | |
| def | __init__ (self, items=None) |
| items can be a list of pair_lists or a dictionary More... | |
| def | get_keys (self, value) |
| find the key(s) as a list given a value More... | |
| def | get_key (self, value) |
| find the key associated to the given a value. More... | |
| def | get_value (self, key) |
| find the value given a key More... | |
a dictionary which can lookup value by key, or keys by value
a dictionary which can lookup value by key, or keys by value
| def KERNEL_PY.kernel.diclookup.Lookup.__init__ | ( | self, | |
items = None |
|||
| ) |
items can be a list of pair_lists or a dictionary
items can be a list of pair_lists or a dictionary
| def KERNEL_PY.kernel.diclookup.Lookup.get_key | ( | self, | |
| value | |||
| ) |
find the key associated to the given a value.
If several keys exist, only the first is given. To get the whole list, use get_keys instead.
find the key associated to the given a value. If several keys exist, only the first is given. To get the whole list, use get_keys instead.
References diclookup.Lookup.get_keys(), and KERNEL_PY.kernel.diclookup.Lookup.get_keys().
| def KERNEL_PY.kernel.diclookup.Lookup.get_keys | ( | self, | |
| value | |||
| ) |
find the key(s) as a list given a value
find the key(s) as a list given a value
References SalomeSDSClt.Dict.items(), and SALOMEWrappedStdType.Dict.items().
Referenced by diclookup.Lookup.get_key(), and KERNEL_PY.kernel.diclookup.Lookup.get_key().
| def KERNEL_PY.kernel.diclookup.Lookup.get_value | ( | self, | |
| key | |||
| ) |
find the value given a key
find the value given a key