CollectionTag

smithy4s.schema.CollectionTag
See theCollectionTag companion object
sealed trait CollectionTag[C[_]]

Attributes

Companion
object
Graph
Supertypes
class Object
trait Matchable
class Any
Known subtypes
object IndexedSeqTag.type
object ListTag.type
object SetTag.type
object VectorTag.type

Members list

Value members

Abstract methods

def build[A](put: (A => Unit) => Unit): C[A]
def isEmpty[A](c: C[A]): Boolean
def iterator[A](c: C[A]): Iterator[A]
def name: String

Concrete methods

def empty[A]: C[A]
def fromIterator[A](it: Iterator[A]): C[A]