1
0
Fork 0
mirror of https://github.com/beefytech/Beef.git synced 2025-07-02 14:25:59 +02:00
Beef/BeefLibs/corlib/src/System/Predicate.bf
2019-08-23 11:56:54 -07:00

4 lines
57 B
Beef

namespace System
{
delegate bool Predicate<T>(T val);
}