// Copyright © WireMock.Net
namespace WireMock.Matchers;
///
/// IFuncMatcher
///
///
public interface IFuncMatcher : IMatcher
{
///
/// Determines whether the specified function is match.
///
/// The value to check for a match.
/// MatchResult
MatchResult IsMatch(object? value);
}