[][src]Function seed::helpers::not

pub fn not<T: Not>(predicate: T) -> T::Output

Alternative to !.

Example

div![
   "Button",
   IF!(not(disabled) => ev(Ev::Click, Msg::Clicked)),
]