TernaryFuzzyRelation
public struct TernaryFuzzyRelation<U, V, W>
extension TernaryFuzzyRelation: FuzzySet
extension TernaryFuzzyRelation: AnyFuzzySetRepresentable
Undocumented
-
Undocumented
Declaration
Swift
public init(_ membershipFunction: MembershipFunction<(U, V, W)>)
-
Undocumented
Declaration
Swift
public init(_ membershipFunction: @escaping MembershipFunction<(U, V, W)>.FunctionType)
-
Undocumented
Declaration
Swift
public func grade(forElement element: (U, V, W)) -> Grade
-
Undocumented
Declaration
Swift
public subscript(u: U, v: V, w: W) -> Grade { get }
-
Undocumented
Declaration
Swift
public func callAsFunction(_ u: U, _ v: V, _ w: W) -> Grade
-
Undocumented
Declaration
Swift
public func eraseToAnyFuzzySet() -> AnyFuzzySet<(U, V, W)>