Skip to content

Commit cd658e2

Browse files
committed
Fold
1 parent 5733c9d commit cd658e2

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

src/lib.rs

+5-1
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ use core::cmp::PartialOrd;
1515
use core::ffi::{c_char, CStr};
1616
use core::ops::{Add, Div, Mul, Rem, Sub};
1717

18-
// DT {{{
18+
// DType {{{
1919

2020
#[allow(missing_docs)]
2121
/// Convert an F32 ito any supported DType
@@ -1315,6 +1315,8 @@ pub fn lch_to_lab<T: DType>(pixel: &mut [T; 3]) {
13151315

13161316
// BACKWARD }}}
13171317

1318+
// ### MONOTYPED EXTERNAL FUNCTIONS ### {{{
1319+
13181320
macro_rules! cdef1 {
13191321
($base:ident, $f32:ident, $f64:ident) => {
13201322
#[no_mangle]
@@ -1383,3 +1385,5 @@ cdef3!(cielab_to_xyz, cielab_to_xyz_f32, cielab_to_xyz_f64);
13831385
cdef3!(oklab_to_xyz, oklab_to_xyz_f32, oklab_to_xyz_f64);
13841386
cdef3!(jzazbz_to_xyz, jzazbz_to_xyz_f32, jzazbz_to_xyz_f64);
13851387
cdef3!(lch_to_lab, lch_to_lab_f32, lch_to_lab_f64);
1388+
1389+
// }}}

0 commit comments

Comments
 (0)