pub fn list<T, S>(
    storage: &S,
    typename: &TypeName
) -> Result<Vec<CollaborativeObject<T>>, Retrieve>
where T: Evaluate<S>, S: Store,
Expand description

List a set of CollaborativeObject.

The storage is the backing storage for storing crate::Entrys at content-addressable locations. Please see Store for further information.

The typename is the type of objects to be listed.