Table of Contents

Delegate Strategy<TIn, TOut>.Predicate

Namespace
PatternKit.Behavioral.Strategy
Assembly
PatternKit.Core.dll

Delegate representing a predicate used to test the input value.

public delegate bool Strategy<TIn, TOut>.Predicate(in TIn input)

Parameters

input TIn

The input value.

Returns

bool

true if this predicate matches; otherwise false.

Extension Methods