MCPcopy Create free account
hub / github.com/SingleRust/SingleRust / is_absolute

Method is_absolute

src/shared/mod.rs:62–68  ·  view source on GitHub ↗
(&self)

Source from the content-addressed store, hash-verified

60
61impl FlexValue {
62 pub fn is_absolute(&self) -> bool {
63 match self {
64 Self::Absolute(_) => true,
65 Self::Relative(_) => false,
66 Self::None => false,
67 }
68 }
69
70 pub fn is_relative(&self) -> bool {
71 match self {

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected