Question

What is the difference between size and length of a Seq? When to use one and when the other?

scala> var a :Seq[String] = Seq("one", "two")
a: Seq[String] = List(one, two)

scala> a.size
res6: Int = 2

scala> a.length
res7: Int = 2

It's the same?

Thanks

Was it helpful?

Solution

Nothing. In the Seq doc, at the size method it is clearly stated: "The size of this sequence, equivalent to length.".

OTHER TIPS

size is defined in GenTraversableOnce, whereas length is defined in GenSeqLike, so length only exists for Seqs, whereas size exists for all Traversables. For Seqs, however, as was already pointed out, size simply delegates to length (which probably means that, after inlining, you will get identical bytecode).

In a Seq they are the same, as others have mentioned. However, for information, this is what IntelliJ warns on a scala.Array:

Replace .size with .length on arrays and strings

Inspection info: This inspection reports array.size and string.size calls. While such calls are legitimate, they require an additional implicit conversion to SeqLike to be made. A common use case would be calling length on arrays and strings may provide significant advantages.

Nothing, one delegates to the other. See SeqLike trait.

  /** The size of this $coll, equivalent to `length`.
   *
   *  $willNotTerminateInf
   */
  override def size = length

I did an experiment, using Scala version 2.12.8, and a million item list. Upon the first use, length() is 7 or 8 times faster than size(). But on the 2nd try on the same list, size() is about the same speed as length().

However, after some time, presumably the cache is gone, size() is slow() by 7 or 8 times again.

This shows that length() is preferred for sequences. It's not just another name for size().

Licensed under: CC-BY-SA with attribution
Not affiliated with StackOverflow
scroll top