Type Alias DepKey

Source
type DepKey<R> = Either<AtomId<R>, Name>;

Aliased Type§

enum DepKey<R> {
    Left(AtomId<R>),
    Right(Label),
}

Variants§

§

Left(AtomId<R>)

A value of type L.

§

Right(Label)

A value of type R.