public readonly ref struct NullableSpan<T>
Public Structure NullableSpan(Of T)
Dim instance As NullableSpan(Of T)
generic<typename T>
public value class NullableSpan
NullableSpan<T> | Initializes a new instance of the NullableSpan<T> structure. |
HasValue | Gets a value that indicates whether this instance contains a value. |
Value | Gets the contained value. |
GetType | Gets the Type of the current instance. (Inherited from Object) |
GetValueOrDefault | Returns the contained value, or the specified default value if there is no value. |
GetValueOrElse | Returns the contained value, or the value returned by the specified function if there is no value. |
Map<TResult>(NullableSpan<T>.MapClassFunc<TResult>) | Maps a NullableSpan<T> to another value by applying a function to the contained value, or returns an empty value if there is no value. |
Map<TResult>(NullableSpan<T>.MapReadOnlyFunc<TResult>) | Maps a NullableSpan<T> to another value by applying a function to the contained value, or returns an empty value if there is no value. |
Map<TResult>(NullableSpan<T>.MapSpanFunc<TResult>) | Maps a NullableSpan<T> to another value by applying a function to the contained value, or returns an empty value if there is no value. |
Map<TResult>(NullableSpan<T>.MapStructFunc<TResult>) | Maps a NullableSpan<T> to another value by applying a function to the contained value, or returns an empty value if there is no value. |
ToString |
Returns a string that represents the current NullableSpan<T>.
(Overrides ValueType.ToString()) |
TryGetValue | Gets the contained value. |
Equality(NullableSpan<T>, NullableSpan<T>) | Compares two NullableReadOnlySpan<T> instances for equality. |
Explicit(NullableSpan<T> to Span<T>) | Explicitly converts a NullableSpan<T> to a Span<T>. |
Implicit(Span<T> to NullableSpan<T>) | Implicitly converts a Span<T> to a NullableSpan<T>. |
Inequality(NullableSpan<T>, NullableSpan<T>) | Compares two NullableReadOnlySpan<T> instances for inequality. |