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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
//! # daywalker - Conditional Nightly Code Inclusion
//!
//! This crate enables the sharing of code between nightly and stable Rust by
//! providing conditional inclusion syntax. It is small and lightweight. It works
//! on a simple principle: use `++[...]` to include code only on nightly with the
//! `nightly` feature enabled, and `--[...]` to include code only on stable
//! without the feature. That's it!
//!
//! When the nightly features you're using are stabilized, you can remove the
//! conditional prefixes (called "bitemarks") and remove the use of this crate.
//!
//! ## Example
//!
//! This is the canonical example of the const trait syntax, adapted to use this
//! crate. At the time of this writing, the const trait syntax is only available
//! on nightly. This feature requires a syntax change, which makes it difficult
//! to share code between nightly and stable. Using this crate, however, we can
//! write the same codebase for both nightly and stable by using the
//! conditional inclusion syntax.
//!
//! ```rust
//! #![cfg_attr(feature = "nightly", feature(const_trait_impl))]
//!
//! daywalker::roam! {
//! pub ++[const] trait Default {
//! fn default() -> Self;
//! }
//!
//! impl ++[const] Default for () {
//! fn default() -> Self {}
//! }
//!
//! pub struct Thing<T>(pub T);
//!
//! impl<T: ++[[const]] Default> ++[const] Default for Thing<T> {
//! fn default() -> Self {
//! Self(T::default())
//! }
//! }
//!
//! pub ++[const] fn default<T: ++[[const]] Default>() -> T {
//! T::default()
//! }
//!
//! #[allow(unused_braces)]
//! pub fn compile_time_default<T: ++[const] Default>() -> T {
//! ++[const] { T::default() }
//! }
//! }
//! ```
extern crate proc_macro;
use ;
/// Emits conditionally included code based on nightly feature availability.
///
/// - `++[...]` includes content only when `feature = "nightly"` is enabled
/// - `--[...]` includes content only when `feature = "nightly"` is disabled
///
/// This macro processes the input token stream and conditionally includes or
/// excludes bracketed content based on the feature flag. This enables writing
/// code that uses nightly syntax when available but falls back to stable
/// alternatives when not.