PropositionGeneralized

data class PropositionGeneralized constructor(val proposition: Proposition, val generalizes: List<Proposition>, val timestamp: Instant = Instant.now()) : DiceEvent

A higher-level proposition was formed that generalizes over a group of more specific ones.

Constructors

Link copied to clipboard
constructor(proposition: Proposition, generalizes: List<Proposition>, timestamp: Instant = Instant.now())

Properties

Link copied to clipboard

The specific propositions it summarizes.

Link copied to clipboard

The abstract proposition that was formed.

Link copied to clipboard
open val timestamp: Instant

When the event was created.