wiwi/
lib.rs

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
#![no_implicit_prelude]

#![cfg_attr(docsrs, feature(doc_cfg))]

#![cfg_attr(all(docsrs, kiwingay), doc = "")]
#![cfg_attr(
	all(docsrs, kiwingay),
	doc = concat!(
		"These docs have been built from commit [",
		env!("KIWINGAY_DEPLOY_COMMIT_SHORT"),
		"](https://github.com/meadowsys/wiwi/commit/",
		env!("KIWINGAY_DEPLOY_COMMIT"),
		")."
	)
)]

#![cfg_attr(
	feature = "nightly",
	feature(
		const_trait_impl,
		integer_atomics,
		f16,
		f128
	)
)]

#[cfg(target_pointer_width = "16")]
compile_error!("16-bit platforms are not supported yet (but please do file an issue if for whatever reason you do need it, I would be happy to add support!)");

#[cfg(any(doc, docsrs, kiwingay))]
#[doc = include_str!("../CHANGELOG.md")]
pub mod _changelog {}

pub mod prelude;
pub mod prelude_std;

pub mod aoc;
pub mod builder;
pub mod chain;
pub mod clock_timer;
pub mod encoding;
pub mod filetypes;
pub mod lazy_wrap;
pub mod lsl;
pub mod macro_util;
pub mod mem_use;
pub mod nominal;
pub mod num;
pub mod parser;
pub mod rc;
pub mod serialiser;
pub mod slice;
pub mod string;
pub mod tuple;
pub mod vh;