Skip to content

Commit

Permalink
Eliminate jstructural
Browse files Browse the repository at this point in the history
  • Loading branch information
io7m committed May 4, 2024
1 parent 89e4dee commit 3078af3
Show file tree
Hide file tree
Showing 11 changed files with 45 additions and 543 deletions.
22 changes: 22 additions & 0 deletions README.in
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@

## jmurmur

A Java implementation of the [Murmur3](https://en.wikipedia.org/wiki/MurmurHash)
hash function.

## Features

* Murmur3 hash function.
* High coverage test suite.
* [OSGi-ready](https://www.osgi.org/)
* [JPMS-ready](https://en.wikipedia.org/wiki/Java_Platform_Module_System)
* ISC license.

## Usage

```
var a = Murmur3.hashInt(23);
var b = Murmur3.hashIntWithSeed(300, 81238);
var c = Murmur3.hashLong(23L);
var d = Murmur3.hashLongWithSeed(300L, 81238L);
```
23 changes: 23 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,3 +13,26 @@ jmurmur
| OpenJDK (Temurin) LTS | Linux | [![Build (OpenJDK (Temurin) LTS, Linux)](https://img.shields.io/github/actions/workflow/status/io7m-com/jmurmur/main.linux.temurin.lts.yml)](https://www.github.com/io7m-com/jmurmur/actions?query=workflow%3Amain.linux.temurin.lts)|
| OpenJDK (Temurin) Current | Windows | [![Build (OpenJDK (Temurin) Current, Windows)](https://img.shields.io/github/actions/workflow/status/io7m-com/jmurmur/main.windows.temurin.current.yml)](https://www.github.com/io7m-com/jmurmur/actions?query=workflow%3Amain.windows.temurin.current)|
| OpenJDK (Temurin) LTS | Windows | [![Build (OpenJDK (Temurin) LTS, Windows)](https://img.shields.io/github/actions/workflow/status/io7m-com/jmurmur/main.windows.temurin.lts.yml)](https://www.github.com/io7m-com/jmurmur/actions?query=workflow%3Amain.windows.temurin.lts)|

## jmurmur

A Java implementation of the [Murmur3](https://en.wikipedia.org/wiki/MurmurHash)
hash function.

## Features

* Murmur3 hash function.
* High coverage test suite.
* [OSGi-ready](https://www.osgi.org/)
* [JPMS-ready](https://en.wikipedia.org/wiki/Java_Platform_Module_System)
* ISC license.

## Usage

```
var a = Murmur3.hashInt(23);
var b = Murmur3.hashIntWithSeed(300, 81238);
var c = Murmur3.hashLong(23L);
var d = Murmur3.hashLongWithSeed(300L, 81238L);
```

214 changes: 0 additions & 214 deletions com.io7m.jmurmur.documentation/pom.xml

This file was deleted.

21 changes: 0 additions & 21 deletions com.io7m.jmurmur.documentation/src/main/assembly/documentation.xml

This file was deleted.

This file was deleted.

This file was deleted.

29 changes: 0 additions & 29 deletions com.io7m.jmurmur.documentation/src/main/java/module-info.java

This file was deleted.

Loading

0 comments on commit 3078af3

Please sign in to comment.