MCPcopy Create free account
hub / github.com/atomicdotdev/atomic / include_hidden

Method include_hidden

atomic-core/src/output/repo/tree.rs:191–194  ·  view source on GitHub ↗

Set whether to include hidden files. # Arguments `include` - Whether to include files starting with '.' # Example ```rust use atomic_core::output::repo::TreeCollectOptions; let opts = TreeCollectOptions::new().include_hidden(false); assert!(!opts.include_hidden); ```

(mut self, include: bool)

Source from the content-addressed store, hash-verified

189 /// assert!(!opts.include_hidden);
190 /// ```
191 pub fn include_hidden(mut self, include: bool) -> Self {
192 self.include_hidden = include;
193 self
194 }
195
196 /// Set the maximum traversal depth.
197 ///

Callers 3

test_options_chainingFunction · 0.80

Calls

no outgoing calls

Tested by 3

test_options_chainingFunction · 0.64