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)

class Object
trait Matchable
class Any
Concat.type

Value members

Concrete methods

def append[@specialized(Boolean, Byte, Int, Long, Double, Float) 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.

Type parameters:
A

First array type

B

Second array type

C

Result array type

Value parameters:
a1

First array

a2

Second array

mc

Evidence of ST for result type

wd

Evidence of instance of Promoter for involved types