mirror of
https://github.com/ml-explore/mlx.git
synced 2025-06-26 10:41:14 +08:00
11 lines
172 B
C
11 lines
172 B
C
![]() |
// Copyright © 2023-2024 Apple Inc.
|
||
|
|
||
|
#pragma once
|
||
|
|
||
|
struct Select {
|
||
|
template <typename T>
|
||
|
T operator()(bool condition, T x, T y) {
|
||
|
return condition ? x : y;
|
||
|
}
|
||
|
};
|