//! Backend predicate used by compiler primitives to declare WGSL availability.
/// Return `true` when `backend` is the WGSL target.
////// Compiler primitives lower to hand-written WGSL kernels; this predicate
/// guards their inclusion in the WGSL lowering table.
pub(crate)fnwgsl_backend(backend:&crate::ops::Backend)->bool{matches!(backend,crate::ops::Backend::Wgsl)}