1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17
// SPDX-License-Identifier: Apache-2.0 // Copyright (c) 2025 ReifyDB //! Operator-specific compilation implementations pub mod aggregate; pub mod append; pub mod apply; pub mod distinct; pub mod extend; pub mod filter; pub mod gate; pub mod join; pub mod map; pub mod sort; pub mod take; pub mod window;