Concat

org.saddle.util.Concat$
object Concat

Provides a way to append two arrays of possibly different types together by intelligently promoting primitive types where possible.

Key method is Concat.append(array1, array2)

Attributes

Graph
Supertypes
class Object
trait Matchable
class Any
Self type
Concat.type

Members list

Concise view

Value members

Concrete methods

def append[A](a1: Array[A], a2: Array[A])(implicit st: ScalarTag[A]): Array[A]

Append two arrays of possibly different types together by intelligently promoting primitive types where possible.

Append two arrays of possibly different types together by intelligently promoting primitive types where possible.

Attributes

A

First array type

B

Second array type

C

Result array type

a1

First array

a2

Second array

mc

Evidence of ST for result type

wd

Evidence of instance of Promoter for involved types