swamp_script_core_extra/
prelude.rs

1/*
2 * Copyright (c) Peter Bjorklund. All rights reserved. https://github.com/swamp/script
3 * Licensed under the MIT License. See LICENSE in the project root for license information.
4 */
5
6pub use {
7    crate::cnv::{overwrite_struct, overwrite_value},
8    crate::export::SwampExport,
9    crate::qck_des::quick_deserialize,
10    crate::typereg::TypeRegistry,
11    crate::value::{QuickSerialize, SourceMapLookup, Value, ValueError, ValueRef},
12    seq_map::SeqMap,
13};