fruity 0.3.0

Rusty bindings for Apple libraries
Documentation
macro_rules! def {
    ($(#[$doc:meta])+) => {
        $(#[$doc])+
        #[cfg(target_pointer_width = "64")]
        pub type CGFloat = f64;

        $(#[$doc])+
        #[cfg(target_pointer_width = "32")]
        pub type CGFloat = f32;
    };
}

def! {
    /// The architecture-dependent floating-point type.
    ///
    /// This is [`f64`] on 64-bit and [`f32`] on 32-bit.
    ///
    /// See [documentation](https://developer.apple.com/documentation/coregraphics/cgfloat).
}