narr.package.scala Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of narr_sjs1_3 Show documentation
Show all versions of narr_sjs1_3 Show documentation
Native Typed Arrays with Scala Semantics for Scala JVM, ScalaJS, and Scala Native!
The newest version!
/*
* Copyright 2023 quafadas
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
import scala.compiletime.*
import narr.native.Extensions.*
import scala.language.implicitConversions
import scala.reflect.ClassTag
package object narr {
type ByteArray = narr.native.ByteArray
type ShortArray = narr.native.ShortArray
type IntArray = narr.native.IntArray
type FloatArray = narr.native.FloatArray
type DoubleArray = narr.native.DoubleArray
type NativeArray[T] = narr.native.NativeArray[T]
private inline def makeNativeArrayOfSize[A:ClassTag](n:Int):NativeArray[A] = narr.native.makeNativeArrayOfSize[A](n:Int)
type NativeTypedArray = ByteArray | ShortArray | IntArray | FloatArray | DoubleArray
type TypedArrayPrimitive = Byte | Short | Int | Float | Double
type ArrayElementType[T <: NativeTypedArray | NativeArray[?]] = T match
case ByteArray => Byte
case ShortArray => Short
case IntArray => Int
case FloatArray => Float
case DoubleArray => Double
case NativeArray[t] => t
type NArray[T] = narr.native.NArray[T]
//val NArray: narr.native.NArray.type = narr.native.NArray
object NArray {
def apply[A](elem: A*)(using ClassTag[A]): NArray[A] = tabulate[A](elem.size)((i: Int) => elem(i))
inline def empty[A](using ClassTag[A]): NArray[A] = ofSize[A](0)
transparent inline def ofSize[A](length: Int)(using ClassTag[A]): NArr[A] & NArray[A] = (inline erasedValue[A] match {
case _: Byte => new ByteArray(length)
case _: Short => new ShortArray(length)
case _: Int => new IntArray(length)
case _: Float => new FloatArray(length)
case _: Double => new DoubleArray(length)
case _ => makeNativeArrayOfSize[A](length)
}).asInstanceOf[NArr[A] & NArray[A]]
def copy[T](nArr: NArray[T]): NArray[T] = nArr.slice(0, nArr.length)
inline def fill[A](length: Int)(t: A)(using ClassTag[A]): NArray[A] = {
val out: NArray[A] = ofSize[A](length)
var i: Int = 0
while (i < length) {
out(i) = t
i += 1
}
out
}
inline def tabulate[A](length: Int)(f: Int => A)(using ClassTag[A]): NArray[A] = {
val out: NArray[A] = ofSize[A](length)
var i: Int = 0
while (i < length) {
out(i) = f(i)
i += 1
}
out
}
transparent inline def from[A](arr: Array[A])(using ClassTag[A]): NArray[A] = {
val out: NArray[A] = ofSize[A](arr.length)
var i: Int = 0
while (i < arr.length) {
out(i) = arr(i)
i += 1
}
out
}
}
type NArr[T] = narr.native.NArr[T]
type SortableNArr[T] = narr.native.SortableNArr[T]
@inline implicit def nArray2NArr[T](nArr:NArray[T]): NArr[T] & NArray[T] = nArr.asInstanceOf[NArr[T] & NArray[T]]
val Extensions: narr.native.Extensions.type = narr.native.Extensions
export Extensions.*
export Extensions.given
}