final case class Set[A](elementSchema: Schema[A], annotations: Chunk[Any] = Chunk.empty) extends Collection[scala.collection.immutable.Set[A], A] with Product with Serializable
- Self Type
- Set[A]
- Alphabetic
- By Inheritance
- Set
- Serializable
- Serializable
- Product
- Equals
- Collection
- Schema
- AnyRef
- Any
- Hide All
- Show All
- Public
- All
Instance Constructors
- new Set(elementSchema: Schema[A], annotations: Chunk[Any] = Chunk.empty)
Type Members
- type Accessors[Lens[_, _, _], Prism[_, _, _], Traversal[_, _]] = Traversal[scala.collection.immutable.Set[A], A]
- type ElementType = A
Value Members
-
final
def
!=(arg0: Any): Boolean
- Definition Classes
- AnyRef → Any
-
final
def
##(): Int
- Definition Classes
- AnyRef → Any
-
def
<*>[B](that: Schema[B]): Schema[(scala.collection.immutable.Set[A], B)]
A symbolic operator for zip.
-
def
<+>[B](that: Schema[B]): Schema[scala.util.Either[scala.collection.immutable.Set[A], B]]
A symbolic operator for orElseEither.
A symbolic operator for orElseEither.
- Definition Classes
- Schema
-
final
def
==(arg0: Any): Boolean
- Definition Classes
- AnyRef → Any
-
def
?: Schema[Option[scala.collection.immutable.Set[A]]]
A symbolic operator for optional.
-
def
annotate(annotation: Any): Set[A]
Returns a new schema that with
annotation
-
val
annotations: Chunk[Any]
Chunk of annotations for this schema
-
final
def
asInstanceOf[T0]: T0
- Definition Classes
- Any
-
def
ast: MetaSchema
- Definition Classes
- Schema
-
def
clone(): AnyRef
- Attributes
- protected[lang]
- Definition Classes
- AnyRef
- Annotations
- @throws( ... ) @native()
-
def
coerce[B](newSchema: Schema[B]): scala.Either[String, Schema[B]]
Convert to Schema[B] iff B and A are homomorphic.
Convert to Schema[B] iff B and A are homomorphic.
This can be used to e.g convert between a case class and it's "generic" representation as a ListMap[String,_]
- Definition Classes
- Schema
-
def
defaultValue: scala.util.Either[String, scala.collection.immutable.Set[A]]
The default value for a
Schema
of typeA
. -
def
diff(thisValue: scala.collection.immutable.Set[A], thatValue: scala.collection.immutable.Set[A]): Patch[scala.collection.immutable.Set[A]]
Performs a diff between thisValue and thatValue.
Performs a diff between thisValue and thatValue. See zio.schema.Differ for details on the default diff algorithms.
- Definition Classes
- Schema
- val elementSchema: Schema[A]
-
final
def
eq(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef
-
def
finalize(): Unit
- Attributes
- protected[lang]
- Definition Classes
- AnyRef
- Annotations
- @throws( classOf[java.lang.Throwable] )
-
def
fromDynamic(value: DynamicValue): scala.util.Either[String, scala.collection.immutable.Set[A]]
- Definition Classes
- Schema
-
final
def
getClass(): Class[_]
- Definition Classes
- AnyRef → Any
- Annotations
- @native()
-
final
def
isInstanceOf[T0]: Boolean
- Definition Classes
- Any
- def makeAccessors(b: AccessorBuilder): Traversal[scala.collection.immutable.Set[A], A]
-
def
migrate[B](newSchema: Schema[B]): scala.Either[String, (scala.collection.immutable.Set[A]) ⇒ scala.util.Either[String, B]]
Generate a homomorphism from A to B iff A and B are homomorphic
Generate a homomorphism from A to B iff A and B are homomorphic
- Definition Classes
- Schema
-
final
def
ne(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef
-
final
def
notify(): Unit
- Definition Classes
- AnyRef
- Annotations
- @native()
-
final
def
notifyAll(): Unit
- Definition Classes
- AnyRef
- Annotations
- @native()
-
def
optional: Schema[Option[scala.collection.immutable.Set[A]]]
Returns a new schema that modifies the type produced by this schema to be optional.
Returns a new schema that modifies the type produced by this schema to be optional.
- Definition Classes
- Schema
-
def
orElseEither[B](that: Schema[B]): Schema[scala.util.Either[scala.collection.immutable.Set[A], B]]
Returns a new schema that combines this schema and the specified schema together, modeling their either composition.
Returns a new schema that combines this schema and the specified schema together, modeling their either composition.
- Definition Classes
- Schema
-
def
ordering: Ordering[scala.collection.immutable.Set[A]]
- Definition Classes
- Schema
-
def
patch(oldValue: scala.collection.immutable.Set[A], diff: Patch[scala.collection.immutable.Set[A]]): scala.util.Either[String, scala.collection.immutable.Set[A]]
Patch value with a Patch.
Patch value with a Patch.
- Definition Classes
- Schema
-
def
repeated: Schema[Chunk[scala.collection.immutable.Set[A]]]
- Definition Classes
- Schema
-
def
serializable: Schema[Schema[scala.collection.immutable.Set[A]]]
- Definition Classes
- Schema
-
final
def
synchronized[T0](arg0: ⇒ T0): T0
- Definition Classes
- AnyRef
-
def
toDynamic(value: scala.collection.immutable.Set[A]): DynamicValue
- Definition Classes
- Schema
-
def
transform[B](f: (scala.collection.immutable.Set[A]) ⇒ B, g: (B) ⇒ scala.collection.immutable.Set[A])(implicit loc: SourceLocation): Schema[B]
Transforms this
Schema[A]
into aSchema[B]
, by supplying two functions that can transform betweenA
andB
, without possibility of failure.Transforms this
Schema[A]
into aSchema[B]
, by supplying two functions that can transform betweenA
andB
, without possibility of failure.- Definition Classes
- Schema
-
def
transformOrFail[B](f: (scala.collection.immutable.Set[A]) ⇒ scala.util.Either[String, B], g: (B) ⇒ scala.util.Either[String, scala.collection.immutable.Set[A]])(implicit loc: SourceLocation): Schema[B]
Transforms this
Schema[A]
into aSchema[B]
, by supplying two functions that can transform betweenA
andB
(possibly failing in some cases).Transforms this
Schema[A]
into aSchema[B]
, by supplying two functions that can transform betweenA
andB
(possibly failing in some cases).- Definition Classes
- Schema
-
def
validate(value: scala.collection.immutable.Set[A])(implicit schema: Schema[scala.collection.immutable.Set[A]]): Chunk[ValidationError]
- Definition Classes
- Schema
-
final
def
wait(): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws( ... )
-
final
def
wait(arg0: Long, arg1: Int): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws( ... )
-
final
def
wait(arg0: Long): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws( ... ) @native()
-
def
zip[B](that: Schema[B]): Schema[(scala.collection.immutable.Set[A], B)]
Returns a new schema that combines this schema and the specified schema together, modeling their tuple composition.
Returns a new schema that combines this schema and the specified schema together, modeling their tuple composition.
- Definition Classes
- Schema