Top |
OsinfoResourcesList *
osinfo_resourceslist_new (void
);
Construct a new resources list that is initially empty.
OsinfoResourcesList *
osinfo_resourceslist_new_copy (OsinfoResourcesList *source
);
osinfo_resourceslist_new_copy
has been deprecated since version 0.2.2 and should not be used in newly-written code.
Use osinfo_list_new_copy()
instead.
Construct a new resources list that is filled with resources instances
from source
OsinfoResourcesList * osinfo_resourceslist_new_filtered (OsinfoResourcesList *source
,OsinfoFilter *filter
);
osinfo_resourceslist_new_filtered
has been deprecated since version 0.2.2 and should not be used in newly-written code.
Use osinfo_list_new_filtered()
instead.
Construct a new resources list that is filled with resources instances
from source
that match filter
OsinfoResourcesList * osinfo_resourceslist_new_intersection (OsinfoResourcesList *sourceOne
,OsinfoResourcesList *sourceTwo
);
osinfo_resourceslist_new_intersection
has been deprecated since version 0.2.2 and should not be used in newly-written code.
Use osinfo_list_new_intersection()
instead.
Construct a new resources list that is filled with only the
resources instances that are present in both sourceOne
and sourceTwo
.
OsinfoResourcesList * osinfo_resourceslist_new_union (OsinfoResourcesList *sourceOne
,OsinfoResourcesList *sourceTwo
);
osinfo_resourceslist_new_union
has been deprecated since version 0.2.2 and should not be used in newly-written code.
Use osinfo_list_new_union()
instead.
Construct a new resources list that is filled with all the
resources instances that are present in either sourceOne
and sourceTwo
.