GetFloat64 retrieves a float64 value from the State. It returns the float64 and a boolean indicating successful type assertion.
(key string)
| 154 | // GetFloat64 retrieves a float64 value from the State. |
| 155 | // It returns the float64 and a boolean indicating successful type assertion. |
| 156 | func (s *State) GetFloat64(key string) (float64, bool) { |
| 157 | return GetState[float64](s, key) |
| 158 | } |
| 159 | |
| 160 | // GetUint retrieves a uint value from the State. |
| 161 | // It returns the uint and a boolean indicating successful type assertion. |
no outgoing calls