Skip to main content
Log in

Mojo trait

RepresentableCollectionElement

The RepresentableCollectionElement trait denotes a trait composition of the CollectionElement and Representable traits.

This is useful to have as a named entity since Mojo does not currently support anonymous trait compositions to constrain on CollectionElement & Representable in the parameter.

Implemented traits

AnyType, CollectionElement, Copyable, Movable, Representable

Methods

__copyinit__

__copyinit__(inout self: T, existing: T, /)

Create a new instance of the value by copying an existing one.

Args:

  • existing (T): The value to copy.

__moveinit__

__moveinit__(inout self: T, owned existing: T, /)

Create a new instance of the value by moving the value of another.

Args:

  • existing (T): The value to move.

__repr__

__repr__(self: T) -> String

Get the string representation of the type instance, if possible, compatible with Mojo syntax.

Returns:

The string representation of the instance.

Was this page helpful?