Skip to content
Snippets Groups Projects
Commit 58dcce49 authored by Manos Koukoutos's avatar Manos Koukoutos
Browse files

List.length as an alias to size

parent 3c77e1f5
No related branches found
No related tags found
No related merge requests found
...@@ -16,6 +16,8 @@ sealed abstract class List[T] { ...@@ -16,6 +16,8 @@ sealed abstract class List[T] {
case Cons(h, t) => 1 + t.size case Cons(h, t) => 1 + t.size
}) ensuring (_ >= 0) }) ensuring (_ >= 0)
def length = size
def content: Set[T] = this match { def content: Set[T] = this match {
case Nil() => Set() case Nil() => Set()
case Cons(h, t) => Set(h) ++ t.content case Cons(h, t) => Set(h) ++ t.content
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment