# sunform::as3query
sunform::as3query is a Rust library for creating, inspecting and modifying the database of the ActionScript 3 language conforming to the Sunform multimedia SDK. sunform::as3query implements three dimensional names, property lookup, type conversion mechanism, variable number representations, interface implementation mechanism, method overriding mechanism, type substitution for parameterized types, an item factory, and several item representations (for example, classes, methods and variables). ## Example Create a package `foo.bar` and log its fully qualified name: ```rust let db = Database::new(Default::default()); let foo_bar = db.factory().create_package(["foo", "bar"]); println!("Package name: {}", foo_bar.fully_qualified_name()); ```