summaryrefslogtreecommitdiff
path: root/src/library
diff options
context:
space:
mode:
authorLaurenz <laurmaedje@gmail.com>2022-05-26 17:14:44 +0200
committerLaurenz <laurmaedje@gmail.com>2022-05-26 17:14:44 +0200
commit806d9f0d9ab381500318f3e106b9c20c5eabccb7 (patch)
tree7466967220be358c4fd8c5e26f0c3ca501fafa97 /src/library
parent22214a1e0a79666caefd486e41828f015878ecb0 (diff)
Pure functions!
Diffstat (limited to 'src/library')
-rw-r--r--src/library/mod.rs60
1 files changed, 30 insertions, 30 deletions
diff --git a/src/library/mod.rs b/src/library/mod.rs
index cf5d6e64..27658189 100644
--- a/src/library/mod.rs
+++ b/src/library/mod.rs
@@ -96,38 +96,38 @@ pub fn new() -> Scope {
std.def_fn("lorem", utility::lorem);
// Predefined colors.
- std.def_const("black", Color::BLACK);
- std.def_const("gray", Color::GRAY);
- std.def_const("silver", Color::SILVER);
- std.def_const("white", Color::WHITE);
- std.def_const("navy", Color::NAVY);
- std.def_const("blue", Color::BLUE);
- std.def_const("aqua", Color::AQUA);
- std.def_const("teal", Color::TEAL);
- std.def_const("eastern", Color::EASTERN);
- std.def_const("purple", Color::PURPLE);
- std.def_const("fuchsia", Color::FUCHSIA);
- std.def_const("maroon", Color::MAROON);
- std.def_const("red", Color::RED);
- std.def_const("orange", Color::ORANGE);
- std.def_const("yellow", Color::YELLOW);
- std.def_const("olive", Color::OLIVE);
- std.def_const("green", Color::GREEN);
- std.def_const("lime", Color::LIME);
+ std.define("black", Color::BLACK);
+ std.define("gray", Color::GRAY);
+ std.define("silver", Color::SILVER);
+ std.define("white", Color::WHITE);
+ std.define("navy", Color::NAVY);
+ std.define("blue", Color::BLUE);
+ std.define("aqua", Color::AQUA);
+ std.define("teal", Color::TEAL);
+ std.define("eastern", Color::EASTERN);
+ std.define("purple", Color::PURPLE);
+ std.define("fuchsia", Color::FUCHSIA);
+ std.define("maroon", Color::MAROON);
+ std.define("red", Color::RED);
+ std.define("orange", Color::ORANGE);
+ std.define("yellow", Color::YELLOW);
+ std.define("olive", Color::OLIVE);
+ std.define("green", Color::GREEN);
+ std.define("lime", Color::LIME);
// Other constants.
- std.def_const("ltr", Dir::LTR);
- std.def_const("rtl", Dir::RTL);
- std.def_const("ttb", Dir::TTB);
- std.def_const("btt", Dir::BTT);
- std.def_const("start", RawAlign::Start);
- std.def_const("end", RawAlign::End);
- std.def_const("left", RawAlign::Specific(Align::Left));
- std.def_const("center", RawAlign::Specific(Align::Center));
- std.def_const("right", RawAlign::Specific(Align::Right));
- std.def_const("top", RawAlign::Specific(Align::Top));
- std.def_const("horizon", RawAlign::Specific(Align::Horizon));
- std.def_const("bottom", RawAlign::Specific(Align::Bottom));
+ std.define("ltr", Dir::LTR);
+ std.define("rtl", Dir::RTL);
+ std.define("ttb", Dir::TTB);
+ std.define("btt", Dir::BTT);
+ std.define("start", RawAlign::Start);
+ std.define("end", RawAlign::End);
+ std.define("left", RawAlign::Specific(Align::Left));
+ std.define("center", RawAlign::Specific(Align::Center));
+ std.define("right", RawAlign::Specific(Align::Right));
+ std.define("top", RawAlign::Specific(Align::Top));
+ std.define("horizon", RawAlign::Specific(Align::Horizon));
+ std.define("bottom", RawAlign::Specific(Align::Bottom));
std
}