added some better wikilinks

This commit is contained in:
James Strachan
2012-03-07 12:44:00 +00:00
parent af93b82ed9
commit cb0d5078da
+2 -2
View File
@@ -41,7 +41,7 @@ inline fun <T> java.lang.Iterable<T>.first() : T {
/** /**
* Get the last element in the collection. * Get the last element in the collection.
* *
* If base collection implements List<T> interface, the combination of size() and get() * If base collection implements [[List]] interface, the combination of size() and get()
* methods will be used for getting last element. Otherwise, this method determines the * methods will be used for getting last element. Otherwise, this method determines the
* last item by iterating through the all items. * last item by iterating through the all items.
* *
@@ -67,7 +67,7 @@ fun <T> java.lang.Iterable<T>.last() : T {
* Checks if collection contains given item. * Checks if collection contains given item.
* *
* Method checks equality of the objects with T.equals method. * Method checks equality of the objects with T.equals method.
* If collection implements java.util.AbstractCollection an overridden implementation of the contains * If collection implements [[java.util.AbstractCollection]] an overridden implementation of the contains
* method will be used. * method will be used.
*/ */
fun <T> java.lang.Iterable<T>.contains(item : T) : Boolean { fun <T> java.lang.Iterable<T>.contains(item : T) : Boolean {