Gee.Collection – gee-0.8 Reference Manual
Packages
gee-0.8
Gee
Collection
is_empty
read_only
read_only_view
size
empty
add
add_all
add_all_array
clear
contains
contains_all
contains_all_array
remove
remove_all
remove_all_array
retain_all
to_array
Collection
Object Hierarchy:
Description:
[
GenericAccessors
]
public
interface
Collection
<
G
> :
Iterable
<
G
>
All known implementing classes:
AbstractCollection
All known sub-interfaces:
List
MultiSet
Queue
Set
Namespace:
Gee
Package:
gee-0.8
Content:
Properties:
public
virtual
bool
is_empty
{
get
; }
public
abstract
bool
read_only
{
get
; }
public
abstract
Collection
<
G
>
read_only_view
{
owned
get
; }
public
abstract
int
size
{
get
; }
Static methods:
public
static
Collection
<
G
>
empty
<
G
> ()
Methods:
public
abstract
bool
add
(
G
item)
public
virtual
bool
add_all
(
Collection
<
G
> collection)
public
bool
add_all_array
(
G
[] array)
public
abstract
void
clear
()
public
abstract
bool
contains
(
G
item)
public
virtual
bool
contains_all
(
Collection
<
G
> collection)
public
bool
contains_all_array
(
G
[] array)
public
abstract
bool
remove
(
G
item)
public
virtual
bool
remove_all
(
Collection
<
G
> collection)
public
bool
remove_all_array
(
G
[] array)
public
virtual
bool
retain_all
(
Collection
<
G
> collection)
public
virtual
G
[]
to_array
()
Inherited Members:
All known members inherited from interface Gee.Iterable
iterator