xref
: /
aosp_15_r20
/
external
/
rust
/
android-crates-io
/
crates
/
anstyle
/
src
/
macros.rs
Home
History
Annotate
Line#
Scopes#
Navigate#
Raw
Download
current directory
1
macro_rules
!
escape
{
2
($($
inner
:
expr
),*) => {
3
concat
!(
"\x1B["
, $($
inner
),*,
"m"
)
4
};
5
}
6