├── .gitignore ├── .idea ├── copyright │ ├── GPL.xml │ └── profiles_settings.xml └── google-java-format.xml ├── LICENSE ├── README.md ├── gradle └── wrapper │ ├── gradle-wrapper.jar │ └── gradle-wrapper.properties ├── gradlew ├── gradlew.bat └── src └── main ├── c ├── almost_pseudo_random.c └── java_2_times_faster_than_c.c ├── csharp ├── .gitignore ├── Program.cs └── java-4-times-faster-than-c-sharp.csproj ├── go ├── almost_pseudo_random.go └── java_faster_than_go.go ├── html ├── almost-pseudo-random.html └── java-faster-than-javascript.html ├── java └── com │ └── xemantic │ └── test │ └── howfast │ ├── AlmostPseudoRandom.java │ └── Java2TimesFasterThanC.java ├── javascript ├── almost_pseudo_random.js ├── java_faster_than_javascript.js ├── java_faster_than_node.js └── run_test.js ├── kotlin ├── AlmostPseudoRandom.kt └── KotlinAsFastAsJava.kt └── rust ├── .gitignore ├── Cargo.toml └── src └── bin ├── almost_pseudo_random.rs ├── rust_raw.rs └── rust_safer.rs /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xemantic/java-2-times-faster-than-c/HEAD/.gitignore -------------------------------------------------------------------------------- /.idea/copyright/GPL.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xemantic/java-2-times-faster-than-c/HEAD/.idea/copyright/GPL.xml -------------------------------------------------------------------------------- /.idea/copyright/profiles_settings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xemantic/java-2-times-faster-than-c/HEAD/.idea/copyright/profiles_settings.xml -------------------------------------------------------------------------------- /.idea/google-java-format.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xemantic/java-2-times-faster-than-c/HEAD/.idea/google-java-format.xml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xemantic/java-2-times-faster-than-c/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xemantic/java-2-times-faster-than-c/HEAD/README.md -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xemantic/java-2-times-faster-than-c/HEAD/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xemantic/java-2-times-faster-than-c/HEAD/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xemantic/java-2-times-faster-than-c/HEAD/gradlew -------------------------------------------------------------------------------- /gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xemantic/java-2-times-faster-than-c/HEAD/gradlew.bat -------------------------------------------------------------------------------- /src/main/c/almost_pseudo_random.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xemantic/java-2-times-faster-than-c/HEAD/src/main/c/almost_pseudo_random.c -------------------------------------------------------------------------------- /src/main/c/java_2_times_faster_than_c.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xemantic/java-2-times-faster-than-c/HEAD/src/main/c/java_2_times_faster_than_c.c -------------------------------------------------------------------------------- /src/main/csharp/.gitignore: -------------------------------------------------------------------------------- 1 | /bin 2 | /obj 3 | -------------------------------------------------------------------------------- /src/main/csharp/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xemantic/java-2-times-faster-than-c/HEAD/src/main/csharp/Program.cs -------------------------------------------------------------------------------- /src/main/csharp/java-4-times-faster-than-c-sharp.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xemantic/java-2-times-faster-than-c/HEAD/src/main/csharp/java-4-times-faster-than-c-sharp.csproj -------------------------------------------------------------------------------- /src/main/go/almost_pseudo_random.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xemantic/java-2-times-faster-than-c/HEAD/src/main/go/almost_pseudo_random.go -------------------------------------------------------------------------------- /src/main/go/java_faster_than_go.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xemantic/java-2-times-faster-than-c/HEAD/src/main/go/java_faster_than_go.go -------------------------------------------------------------------------------- /src/main/html/almost-pseudo-random.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xemantic/java-2-times-faster-than-c/HEAD/src/main/html/almost-pseudo-random.html -------------------------------------------------------------------------------- /src/main/html/java-faster-than-javascript.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xemantic/java-2-times-faster-than-c/HEAD/src/main/html/java-faster-than-javascript.html -------------------------------------------------------------------------------- /src/main/java/com/xemantic/test/howfast/AlmostPseudoRandom.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xemantic/java-2-times-faster-than-c/HEAD/src/main/java/com/xemantic/test/howfast/AlmostPseudoRandom.java -------------------------------------------------------------------------------- /src/main/java/com/xemantic/test/howfast/Java2TimesFasterThanC.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xemantic/java-2-times-faster-than-c/HEAD/src/main/java/com/xemantic/test/howfast/Java2TimesFasterThanC.java -------------------------------------------------------------------------------- /src/main/javascript/almost_pseudo_random.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xemantic/java-2-times-faster-than-c/HEAD/src/main/javascript/almost_pseudo_random.js -------------------------------------------------------------------------------- /src/main/javascript/java_faster_than_javascript.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xemantic/java-2-times-faster-than-c/HEAD/src/main/javascript/java_faster_than_javascript.js -------------------------------------------------------------------------------- /src/main/javascript/java_faster_than_node.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xemantic/java-2-times-faster-than-c/HEAD/src/main/javascript/java_faster_than_node.js -------------------------------------------------------------------------------- /src/main/javascript/run_test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xemantic/java-2-times-faster-than-c/HEAD/src/main/javascript/run_test.js -------------------------------------------------------------------------------- /src/main/kotlin/AlmostPseudoRandom.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xemantic/java-2-times-faster-than-c/HEAD/src/main/kotlin/AlmostPseudoRandom.kt -------------------------------------------------------------------------------- /src/main/kotlin/KotlinAsFastAsJava.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xemantic/java-2-times-faster-than-c/HEAD/src/main/kotlin/KotlinAsFastAsJava.kt -------------------------------------------------------------------------------- /src/main/rust/.gitignore: -------------------------------------------------------------------------------- 1 | target 2 | Cargo.lock 3 | -------------------------------------------------------------------------------- /src/main/rust/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xemantic/java-2-times-faster-than-c/HEAD/src/main/rust/Cargo.toml -------------------------------------------------------------------------------- /src/main/rust/src/bin/almost_pseudo_random.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xemantic/java-2-times-faster-than-c/HEAD/src/main/rust/src/bin/almost_pseudo_random.rs -------------------------------------------------------------------------------- /src/main/rust/src/bin/rust_raw.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xemantic/java-2-times-faster-than-c/HEAD/src/main/rust/src/bin/rust_raw.rs -------------------------------------------------------------------------------- /src/main/rust/src/bin/rust_safer.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xemantic/java-2-times-faster-than-c/HEAD/src/main/rust/src/bin/rust_safer.rs --------------------------------------------------------------------------------