| GetValueOrDefault(ReadOnlySpanChar) | Tries to get the value from the dictionary for the given key. |
| GetValueOrDefault(String) | Tries to get the value from the dictionary for the given key. |
| GetValueOrDefault(StringSegment) | Tries to get the value from the dictionary for the given key. |
| GetValueOrDefaultTActualValue(ReadOnlySpanChar, TActualValue) | Tries to get the typed value from the dictionary for the given key. The defaultValue parameter can have a more specific type than TValue. |
| GetValueOrDefaultTActualValue(ReadOnlySpanChar, FuncTActualValue) | Tries to get the typed value from the dictionary for the given key. The defaultValueFactory can return an instance of a more specific type than TValue. |
| GetValueOrDefaultTActualValue(String, TActualValue) | Tries to get the typed value from the dictionary for the given key. The defaultValue parameter can have a more specific type than TValue. |
| GetValueOrDefaultTActualValue(String, FuncTActualValue) | Tries to get the typed value from the dictionary for the given key. The defaultValueFactory can return an instance of a more specific type than TValue. |
| GetValueOrDefaultTActualValue(StringSegment, TActualValue) | Tries to get the typed value from the dictionary for the given key. The defaultValue parameter can have a more specific type than TValue. |
| GetValueOrDefaultTActualValue(StringSegment, FuncTActualValue) | Tries to get the typed value from the dictionary for the given key. The defaultValueFactory can return an instance of a more specific type than TValue. |