View Source ExTournaments.Match (ExTournaments v0.1.0)

A struct representing a single match in the tournament.

Link to this section Summary

Types

t()

A match

Link to this section Types

@type t() :: %ExTournaments.Match{
  loss: t() | nil,
  match: non_neg_integer() | nil,
  player1: non_neg_integer() | nil,
  player2: non_neg_integer() | nil,
  round: non_neg_integer() | nil,
  win: t() | nil
}

A match

Link to this section Functions