All Downloads are FREE. Search and download functionalities are using the official Maven repository.

mhtml.buffer.scala Maven / Gradle / Ivy

The newest version!
package mhtml

import scalajs.js.Array

private[mhtml] object buffer {
  type Buffer[E] = Array[E]
  def empty[A]: Buffer[A] = new Array[A]
  def apply[A](size: Int): Buffer[A] = new Array(size)
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy