BucketName

object BucketName extends Subtype[String]
class Object
trait Matchable
class Any

Type members

Inherited types

type Type <: A
Inherited from:
Subtype

Value members

Inherited methods

inline def apply(inline a1: String, inline a2: String, inline a3: String, inline a4: String, inline a5: String, inline a6: String): NonEmptyChunk[Type]
Inherited from:
NewtypeCustom
inline def apply(inline a1: String, inline a2: String, inline a3: String, inline a4: String, inline a5: String): NonEmptyChunk[Type]
Inherited from:
NewtypeCustom
inline def apply(inline a1: String, inline a2: String, inline a3: String, inline a4: String): NonEmptyChunk[Type]
Inherited from:
NewtypeCustom
inline def apply(inline a1: String, inline a2: String, inline a3: String): NonEmptyChunk[Type]
Inherited from:
NewtypeCustom
inline def apply(inline a1: String, inline a2: String): NonEmptyChunk[Type]
Inherited from:
NewtypeCustom
inline def apply(inline a1: String): Type

Converts an instance of the underlying type to an instance of the newtype.

Converts an instance of the underlying type to an instance of the newtype.

Inherited from:
NewtypeCustom
Inherited from:
Newtype
protected def derive[TypeClass[_]](implicit instance: TypeClass[String]): TypeClass[Type]

Derives an instance of a type class for the new type given an instance of the type class for the underlying type. The caller is responsible for the type class being a valid instance for the new type.

Derives an instance of a type class for the new type given an instance of the type class for the underlying type. The caller is responsible for the type class being a valid instance for the new type.

Inherited from:
NewtypeCustom
Inherited from:
NewtypeCustom
def makeAll[F[_] : ForEach](value: F[String]): Validation[String, F[Type]]
Inherited from:
NewtypeCustom
def unapply(value: Type): Some[A]

Allows pattern matching on newtype instances to convert them back to instances of the underlying type.

Allows pattern matching on newtype instances to convert them back to instances of the underlying type.

Inherited from:
NewtypeCustom
def unwrap(value: Type): A

Converts an instance of the newtype back to an instance of the underlying type.

Converts an instance of the newtype back to an instance of the underlying type.

Inherited from:
NewtypeCustom
def unwrapAll[F[_]](value: F[Type]): F[A]

Converts an instance of a type parameterized on the newtype back to an instance of a type parameterized on the underlying type. For example, this could be used to convert a list of instances of the newtype back to a list of instances of the underlying type.

Converts an instance of a type parameterized on the newtype back to an instance of a type parameterized on the underlying type. For example, this could be used to convert a list of instances of the newtype back to a list of instances of the underlying type.

Inherited from:
NewtypeCustom
protected def validate(value: String): Either[AssertionError, Unit]

Function that will used to check runtime values before lifting them into the newtype. Should be consistent with validateInline.

Function that will used to check runtime values before lifting them into the newtype. Should be consistent with validateInline.

Inherited from:
Newtype
inline protected def validateInline(inline value: String): Unit

Function that will be used to check compile-time values before lifting them into the newtype. Should be consistent with validate.

Function that will be used to check compile-time values before lifting them into the newtype. Should be consistent with validate.

Inherited from:
Newtype
protected def wrap(value: String): Type

Converts an instance of the underlying type to an instance of the newtype. Ignores the assertion.

Converts an instance of the underlying type to an instance of the newtype. Ignores the assertion.

Inherited from:
NewtypeCustom
protected def wrapAll[F[_]](value: F[String]): F[Type]

Converts an instance of a type parameterized on the underlying type to an instance of a type parameterized on the newtype.

Converts an instance of a type parameterized on the underlying type to an instance of a type parameterized on the newtype.

Inherited from:
NewtypeCustom