get_bytes_range_attrs() — tailwindcss Function Reference
Architecture documentation for the get_bytes_range_attrs() function in lib.rs from the tailwindcss codebase.
Entity Profile
Dependency Diagram
graph TD 5696625c_468d_406d_a9d6_9a75e1d48cda["get_bytes_range_attrs()"] 04528f80_f543_1a01_57fe_cf74526d053a["classify_bytes_derive()"] 04528f80_f543_1a01_57fe_cf74526d053a -->|calls| 5696625c_468d_406d_a9d6_9a75e1d48cda df7ccd48_268b_9495_004b_935c488749c1["parse_bytes_range_attr()"] 5696625c_468d_406d_a9d6_9a75e1d48cda -->|calls| df7ccd48_268b_9495_004b_935c488749c1 style 5696625c_468d_406d_a9d6_9a75e1d48cda fill:#6366f1,stroke:#818cf8,color:#fff
Relationship Graph
Source Code
crates/classification-macros/src/lib.rs lines 163–174
fn get_bytes_range_attrs(attrs: &[Attribute]) -> Vec<u8> {
let mut assigned = Vec::new();
for attr in attrs {
if attr.path().is_ident("bytes_range") {
match parse_bytes_range_attr(attr) {
Ok(list) => assigned.extend(list),
Err(e) => panic!("Error parsing #[bytes_range(...)]: {}", e),
}
}
}
assigned
}
Domain
Subdomains
Calls
Called By
Source
Frequently Asked Questions
What does get_bytes_range_attrs() do?
get_bytes_range_attrs() is a function in the tailwindcss codebase.
What does get_bytes_range_attrs() call?
get_bytes_range_attrs() calls 1 function(s): parse_bytes_range_attr.
What calls get_bytes_range_attrs()?
get_bytes_range_attrs() is called by 1 function(s): classify_bytes_derive.
Analyze Your Own Codebase
Get architecture documentation, dependency graphs, and domain analysis for your codebase in minutes.
Try Supermodel Free