pub trait Broadcast<Scalar> {
    // Required method
    fn broadcast(scalar: Scalar) -> Self;
}
Expand description

Value that can be filled with Scalar

Required Methods§

source

fn broadcast(scalar: Scalar) -> Self

Set `scalar`` value to all the positions

Object Safety§

This trait is not object safe.

Implementors§

source§

impl<F: Field> Broadcast<F> for F