Home / Function/ get_bytes_range_attrs() — tailwindcss Function Reference

get_bytes_range_attrs() — tailwindcss Function Reference

Architecture documentation for the get_bytes_range_attrs() function in lib.rs from the tailwindcss codebase.

Function rust OxideCore PreProcessors calls 1 called by 1

Entity Profile

Dependency Diagram

graph TD
  aeb97f04_6f92_451c_2ba2_537a9fee83e4["get_bytes_range_attrs()"]
  bce7be47_b87a_2df9_2d60_2490d7e445fe["classify_bytes_derive()"]
  bce7be47_b87a_2df9_2d60_2490d7e445fe -->|calls| aeb97f04_6f92_451c_2ba2_537a9fee83e4
  21d6c2ff_4d1f_58aa_607b_09fbb6fe9ba7["parse_bytes_range_attr()"]
  aeb97f04_6f92_451c_2ba2_537a9fee83e4 -->|calls| 21d6c2ff_4d1f_58aa_607b_09fbb6fe9ba7
  style aeb97f04_6f92_451c_2ba2_537a9fee83e4 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

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