MCPcopy Create free account
hub / github.com/Pometry/Raphtory / list

Method list

raphtory-api/src/python/prop.rs:320–323  ·  view source on GitHub ↗
(values: &Bound<'_, PyAny>)

Source from the content-addressed store, hash-verified

318 /// Prop:
319 #[staticmethod]
320 pub fn list(values: &Bound<'_, PyAny>) -> PyResult<Self> {
321 let elems: Vec<Prop> = values.extract()?;
322 Ok(PyProp(Prop::list(elems)))
323 }
324
325 /// Construct a `Prop` holding a string-keyed map of values.
326 ///

Calls 4

PyPropClass · 0.85
listFunction · 0.85
ListEnum · 0.85
extractMethod · 0.45