Wesley Acheson
09/05/2020, 12:44 PM/**
* Represents the way two [clauses][Clause] are joined.
*
* @property AND Means that this clause and the previous clause should be combined using and
* (i.e. both need to be `true`)
* @property OR Means that this clause should be combind with the previous clause using or
* (i.e. this clause needs to be true or the previous clause needs to be `true`)
*/
enum class Conjunction() {
AND,
OR
}
Or should the values be on the enums themselves?nanodeath
09/05/2020, 2:01 PMWesley Acheson
09/05/2020, 2:01 PMnanodeath
09/05/2020, 2:03 PM/** short line of doc */
commentsWesley Acheson
09/05/2020, 2:04 PMenum class conjunction{AND,OR}