winter_math/field/mod.rs
1// Copyright (c) Facebook, Inc. and its affiliates.
2//
3// This source code is licensed under the MIT license found in the
4// LICENSE file in the root directory of this source tree.
5
6mod traits;
7pub use traits::{ExtensibleField, ExtensionOf, FieldElement, StarkField, ToElements};
8
9pub mod f128;
10pub mod f62;
11pub mod f64;
12
13mod extensions;
14pub use extensions::{CubeExtension, QuadExtension};