You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Currently Regex.Match element accessors are implemented this way:
/// Lookup a capture by name or number
public subscript<T>(dynamicMember keyPath:KeyPath<Output,T>)-> T {output[keyPath: keyPath]}
// Allows `.0` when `Match` is not a tuple.
@_disfavoredOverloadpublic subscript(
dynamicMember keyPath:KeyPath<(Output, _doNotUse:()),Output>)-> Output {
output
}
This is not correct as we should not materialize the entire output.