stscoundrel / old-swedish-dictionary-rs

Old Swedish Dictionary for Rust. From K.F. Söderwall's Medieval Swedish Dictionary

Home Page:https://docs.rs/old_swedish_dictionary

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Old Swedish Dictionary

Old Swedish Dictionary for Rust. The dictionary consists of 40 000+ Old Swedish words with Swedish translations.

Based on K.F. Söderwall's Medieval Swedish Dictionary

Install

cargo add old_swedish_dictionary

Or add this to your Cargo.toml:

[dependencies]
old_swedish_dictionary = "1.0.0"

Usage

// Ships getter for dictionary, plus DictionaryEntry.
use old_swedish_dictionary::{get_dictionary, DictionaryEntry};

let dictionary = get_dictionary();

// Both methods return Result, which should always be safe to unwrap.
// Up to you if you wish to just unwrap, or use other error handling method.
let dictionary_content: Vec<DictionaryEntry> = dictionary.unwrap();

println!("A word from dictionary: {}. First definition for it is: {}", &dictionary_content[0].headword, &dictionary_content[0].definitions[0])

About "Dictionary of Old Swedish"

"Ordbok Öfver svenska medeltids-språket" dictionary was published in late 1884—1918 by K.F. Söderwall. Additional supplement to it was published in 1953—1973.

Old Swedish developed from Old East Norse, the eastern dialect of Old Norse, at the end of the Viking Age. Early Old Swedish was spoken from about 1225 until about 1375, and Late Old Swedish was spoken from about 1375 until about 1526.

The original material is licenced under Creative Commons International (CC BY 4.0), made available by University of Gothenburg. The source code for this library is under MIT licence.

About

Old Swedish Dictionary for Rust. From K.F. Söderwall's Medieval Swedish Dictionary

https://docs.rs/old_swedish_dictionary

License:MIT License


Languages

Language:Rust 100.0%