blob: aabdd21d1f2a01e67442c46d40f73f6655dfaf84 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
//! SIMD-optimized routines. If `build_options.simd` is false, then the API
//! still works but we fall back to pure Zig scalar implementations.
const std = @import("std");
const codepoint_width = @import("codepoint_width.zig");
pub const base64 = @import("base64.zig");
pub const index_of = @import("index_of.zig");
pub const vt = @import("vt.zig");
pub const codepointWidth = codepoint_width.codepointWidth;
test {
@import("std").testing.refAllDecls(@This());
}
|