Result

public struct Result<T> where T : Equatable

Result is a container of the results of the experiment.

  • The experiment you conducted.

    Declaration

    Swift

    public let experiment: Experiment<T>
  • Control observation contains experiment for the existing logicA.

    Declaration

    Swift

    public let control: Observation<T>?
  • All Observations

    Declaration

    Swift

    public let observations: [Observation<T>]
  • The Observations except Control observation.

    Declaration

    Swift

    public let candidates: [Observation<T>]
  • The observation that contains

    Declaration

    Swift

    public var mismatches: [Observation<T>]
  • Undocumented

    Declaration

    Swift

    public var ignores: [Observation<T>]
  • Undocumented

    Declaration

    Swift

    public func mismatched() -> Bool
  • Undocumented

    Declaration

    Swift

    public func ignored() -> Bool
  • Undocumented

    Declaration

    Swift

    public func matched() -> Bool