summaryrefslogtreecommitdiff
path: root/gee/iterable.vala
diff options
context:
space:
mode:
Diffstat (limited to 'gee/iterable.vala')
-rw-r--r--gee/iterable.vala8
1 files changed, 2 insertions, 6 deletions
diff --git a/gee/iterable.vala b/gee/iterable.vala
index a6ef612..bbaa765 100644
--- a/gee/iterable.vala
+++ b/gee/iterable.vala
@@ -25,12 +25,8 @@ using GLib;
/**
* An object that can provide an {@link Iterator}.
*/
-public interface Gee.Iterable<G> : Object {
- /**
- * The type of the elements in this collection.
- */
- public abstract Type element_type { get; }
-
+[GenericAccessors]
+public interface Gee.Iterable<G> : Object, Traversable<G> {
/**
* Returns a {@link Iterator} that can be used for simple iteration over a
* collection.