peek method

ValidationResult<T, E>? peek(
  1. T value
)

Returns the cached result for value, or null if not cached.

Does not update access order (use validate for that).

Implementation

ValidationResult<T, E>? peek(T value) => _cache[value];