ggstd 0.1.0

Partial implementation of Go standard library
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
// Copyright 2023 The rust-ggstd authors.
// SPDX-License-Identifier: BSD-3-Clause

mod color;

pub use color::{
    Alpha, Alpha16, Color, ColorTrait, Gray, Gray16, Model, Palette, BLACK, NRGBA, NRGBA64, OPAQUE,
    OPAQUE_BLACK, RGBA, RGBA64, TRANSPARENT, WHITE,
};

#[cfg(test)]
mod color_test;