Tomboy toml dom

For those who are struggling with Rust's cool syntax, our goal is to provide a TOML parser that's as easy as pointing to a menu and eating fast food.
Rustのイケてる構文に難儀している人のために、メニューを指差してファーストフードを食べるぐらい簡単な操作のTOMLパーサーを提供することを目標とします。

It's a tryal and error process. Specifications will change.
試行錯誤中です。 仕様はコロコロ変わるでしょう。

Tomboy is a pun.
トムボーイ(おてんば娘)は語呂合わせです。

References:

Run (実行)

Take a look at the repository.
リポジトリを見てください。

shell cargo run --example comment cargo run --example cover cargo run --example example cargo run --example inline_table cargo run --example key_value_number cargo run --example key_value_wip cargo run --example key_value cargo run --example main cargo run --example mix_array cargo run --example table

Specification (仕様)

The specifications will gradually solidify.
仕様は少しずつ固めていきます。

You can think that you can't do anything that isn't written here.
ここに書かれていないことは何もできないと思ってもらって構いません。

``rust //! An exemplary program. //! 模範的なプログラム。 //! //!cargo run --example example`

extern crate tomboytomldom;

use tomboytomldom::Toml;

fn main() { // Read a toml. // Toml読取。 let tomlfile = "./resource/example.toml"; let doc = Toml::fromfile(toml_file);

// Read a number.
// 数値読取。
if let Some(age) = doc.get_i128_by_key("age") {
    println!("age = {}", age);
    // age = 40
}
if let Some(age) = doc.get_f64_by_key("weight") {
    println!("weight = {}", age);
    // weight = 93.5
}

// WIP. Read a string.
// 作業中。 文字列読取。
//
// "pie"
if let Some(apple) = doc.get_str_by_key("apple") {
    println!("apple = {}", apple);
    // apple = pie
}
// "., ={}[]'\"\\!?"
if let Some(double_quoted_punctuation) = doc.get_str_by_key("double_quoted_punctuation") {
    println!("double_quoted_punctuation = {}", double_quoted_punctuation);
    // double_quoted_punctuation = ., ={}[]'"\!?
}

// Read a boolean.
// 論理値読取。
if let Some(adult) = doc.get_bool_by_key("adult") {
    println!("adult = {}", adult);
    // adult = true
}
if let Some(student) = doc.get_bool_by_key("student") {
    println!("student = {}", student);
    // student = false
}

} ```

TODO