(patch) Update to latest versions.
All checks were successful
/ Build and Test Library Snapshot (pull_request) Successful in 4m19s

This commit is contained in:
Pat Garrity 2026-05-28 08:38:23 -05:00
parent 9f0a12d307
commit 0138edc156
Signed by: pfm
GPG key ID: 0DC16BCA24B270C4
3 changed files with 8 additions and 2 deletions

View file

@ -1,4 +1,4 @@
val scala3: String = "3.8.1"
val scala3: String = "3.8.3"
ThisBuild / scalaVersion := scala3
ThisBuild / versionScheme := Some("semver-spec")

View file

@ -1 +1 @@
sbt.version=1.12.0
sbt.version=1.12.11

View file

@ -23,8 +23,14 @@ end Predicate
object Predicate:
/** @return
* The predicate that evaluates to `true`.
*/
def alwaysTrue: Predicate = True
/** @return
* The predicate that evaluates to `false`.
*/
def alwaysFalse: Predicate = False
/** The result of evaluating a [[Predicate]] is a Boolean value where: