1// devela::code::util::reexports
2//
3//! Reexported macros and hints.
4//
56#![allow(unused_imports)]
78use crate::reexport;
910/// <span class="stab portability" title="re-exported from the `devela_macros`
11/// crate">`devela_macros`</span>
12// IMPROVE: MAYBE make it optional, only when required:
13// - build_static_hashmap! ... what else?
14pub use devela_macros::{
15 cif, coalesce, compile, compile_attr, compile_doc, enumint, field_of, ident_total,
16 ident_total_unique, ident_unique,
17};
1819/* `core::hint` functions re-exports */
2021reexport! { rust: core::hint,
22doc: "Makes a *soundness* promise to the compiler that the `cond`ition holds.", assert_unchecked }
23reexport! { rust: core::hint,
24doc: "Hints the compiler to be maximally pessimistic about what black_box could do.", black_box }
25reexport! { rust: core::hint,
26doc: "Signals the processor that it is running in a busy-wait spin-loop.", spin_loop }
27reexport! { rust: core::hint,
28doc: "Informs the compiler that the current calling site is not reachable.", unreachable_unchecked }
2930/* `core` macros re-exports */
3132reexport! { rust: core::autodiff, extra_features: "nightly_autodiff",
33doc: "Automatic Differentiation macro.", autodiff }
3435// source code
36reexport! { rust: core,
37doc: "Expands to the column number at which it was invoked.", @column as code_column }
38reexport! { rust: core,
39doc: "Expands to the line number at which it was invoked.", @line as code_line }
40reexport! { rust: core,
41doc: "Expands to the file name at which it was invoked.", @file as code_file }
42reexport! { rust: core,
43doc: "Expands to a string representing the current module path.", @module_path as code_module }
4445// assert
46reexport! { rust: core,
47doc: "Asserts that a boolean expression is true at runtime.", assert }
48reexport! { rust: core,
49doc: "Asserts that two expressions are equal to each other.", assert_eq }
50reexport! { rust: core,
51doc: "Asserts that two expressions are not equal to each other.", assert_ne }
52reexport! { rust: core,
53doc: "Asserts that a boolean expression is true at runtime.", debug_assert }
54reexport! { rust: core,
55doc: "Asserts that two expressions are equal to each other.", debug_assert_eq }
56reexport! { rust: core,
57doc: "Asserts that two expressions are not equal to each other.", debug_assert_ne }
5859// cfg
60reexport! { rust: core,
61doc: "Evaluates boolean combinations of configuration flags at compile-time.", cfg }
6263// include
64reexport! { rust: core,
65doc: "Parses a file as an expression or an item according to the context.", include }
66reexport! { rust: core,
67doc: "Includes a file as a reference to a byte array.", include_bytes }
68reexport! { rust: core,
69doc: "Includes a UTF-8 encoded file as a string.", include_str }
7071// concatenating
72reexport! { rust: core, doc: "Concatenates literals into a static string slice.", concat }
73reexport! { rust: core, doc: "Stringifies its arguments.", stringify }
74// WAIT: [concat_idents](https://github.com/rust-lang/rust/issues/29599)
75// reexport! { rust: core, doc: "Concatenates identifiers into one identifier.", concat_idents }
76// WAIT: [concat_bytes](https://github.com/rust-lang/rust/issues/87555)
77// reexport! { rust: core, doc: "Concatenates literals into a byte slice.", concat_bytes }