Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
些細な質問かもしれませんが、ドキュメントが見つかりません。
内部Streamや他の場所で、メソッドを使用した例を見てきました#::。例えば:
Stream
#::
val fibs: Stream[BigInt] = BigInt(0) #:: BigInt(1) #:: fibs.zip(fibs.tail).map { n => n._1 + n._2 }
#::しかし、apiに暗黙的なメソッドのドキュメントが見つかりません。それは何ですか?そしてそれはどこで宣言されていますか?