pub trait PartiallySymbolicType {
    type Type;
}
Expand description

Type map used to compute the almost symbolic version of a Moose type.

Concretely, this map computes the symbolic version, except for the top-most type. As an example, RepTensor<Symbolic> is partially symbolic as opposed to the (fully) symbolic type Symbolic<RepTensor<Symbolic.

Required Associated Types

Implementors