1 2 3 4 5 6 7 8 9 10 11 12 13
use super::{Builtin, GlobalFunctionMap}; mod hsl; mod opacity; mod other; mod rgb; pub(crate) fn declare(f: &mut GlobalFunctionMap) { hsl::declare(f); opacity::declare(f); other::declare(f); rgb::declare(f); }
1 2 3 4 5 6 7 8 9 10 11 12 13
use super::{Builtin, GlobalFunctionMap}; mod hsl; mod opacity; mod other; mod rgb; pub(crate) fn declare(f: &mut GlobalFunctionMap) { hsl::declare(f); opacity::declare(f); other::declare(f); rgb::declare(f); }