I want to write:
val a = Array(1,2,3) println(a.toString)
And have a full listing. Is it possible?
You must do this:
scala> val a = Array(1, 2, 3) a: Array[Int] = Array(1, 2, 3) scala> println(a.deep) Array(1, 2, 3) scala>
Source: https://habr.com/ru/post/1340309/More articles:Activity position in action stack - androidHow to automatically determine the path of a previous installation using Inno Setup - inno-setupHow do I iterate over different frames? - javascriptC + Ctrl KeyBinding does not cause copying - .net-3.5RichTextBox and UserPaint - c #strlen in assembly - assemblyWhat is this NSDateFormatter Style Friday, December 18 - objective-cUserControl in DataTemplate does not apply font style - resourcesReusing Android layouts - androidBidirectional mapping Dozer (String, String) with user controller impossible? - javaAll Articles