#
scala-native
Here are 99 public repositories matching this topic...
ekrich
commented
Jun 24, 2021
$ sw_vers
ProductName: Mac OS X
ProductVersion: 10.14.6
BuildVersion: 18G9028
struct utsname name;
if (uname(&name) == 0) {
printf("os.name=%s\n",name.sysname);
printf("os.version=%s\n",name.release);
}
// os.name=Darwin
// os.version=18.7.0
Seems no way to map Darwin version to Mac OS X version.
/usr/libexec/PlistBuddy -c "Print:
Pure Scala Artifact Fetching
-
Updated
Aug 15, 2021 - Scala
Use the world of Python from the comfort of Scala!
-
Updated
Aug 15, 2021 - Scala
property based testing library for Scala
testing
scala
prng
scalaz
scalaprops
property-based-testing
scala-js
mersenne-twister
dotty
scala3
scala-native
-
Updated
Aug 15, 2021 - Scala
Build tool for Scala projects
-
Updated
Dec 11, 2020 - Scala
Compilation of Scala Native resources and libraries
-
Updated
Feb 10, 2021
Cross-platform compilation support for sbt.
-
Updated
Jul 3, 2021 - Scala
Scala library for cross-platform 2D game development
-
Updated
Jan 31, 2021 - Scala
Functional HTML5 and XML library for the Scala platform
-
Updated
Dec 10, 2020 - Scala
RTree2D is a 2D immutable R-tree with STR (Sort-Tile-Recursive) packing for ultra-fast nearest and intersection queries
scala
high-performance
spatial-index
str
scala-js
scala-native
2d
rtree
sort-tile-recursive
geo-index
str-packing
-
Updated
Aug 15, 2021 - Scala
Routing library for the Scala platform
-
Updated
Jan 25, 2021 - Scala
Giter8 template for a minimal project that uses Scala Native.
-
Updated
Jul 23, 2021 - Scala
Compile-time JSON marshaling and abstraction for Scala, Scala Native and Scala.js
-
Updated
May 21, 2021 - Scala
Scala Native HTTP server based on NGINX Unit
-
Updated
Jul 4, 2021 - Scala
A Typesafe-logging (and slf4j) compatible logging library based on macros for Scala/JVM, Scala.js, and Scala Native
-
Updated
Sep 17, 2020 - Scala
Build integrator for Java, Scala, Scala.macro, Scala.js, Scala.native, Eclipse and Maven.
-
Updated
May 2, 2019 - Scala
typeclass based functional msgpack serializer/deserializer for Scala. support scala.js and scala-native / msgpack.org[Scala]
-
Updated
Aug 15, 2021 - Scala
OpenGL and SDL2 bindings for Scala Native
-
Updated
Feb 21, 2021 - Scala
immutable primitive array/NonEmptyArray wrapper for Scala
-
Updated
Aug 15, 2021 - Scala
Scala Native support for the TensorFlow C API on Linux and macOS
-
Updated
Jul 28, 2021 - Scala
TOML parser with codec derivation for the Scala platform
-
Updated
Dec 11, 2020 - Scala
Scala Native BLAS (Basic Linear Algebra Subprograms) supporting Linux and macOS
-
Updated
Jul 12, 2021 - Scala
A port of gears.c to Scala using Scala Native
-
Updated
Sep 26, 2018 - Scala
Improve this page
Add a description, image, and links to the scala-native topic page so that developers can more easily learn about it.
Add this topic to your repo
To associate your repository with the scala-native topic, visit your repo's landing page and select "manage topics."
I just came across the fact that a
Show[Throwable]
exists.import Scalaz._
, one needs toimport scalaz.std.java.throwable._
What's going on with this? :D
Is it OK if I fix both of these (for 7.2 and 7.3)?