1
0
Fork 0
mirror of https://github.com/beefytech/Beef.git synced 2025-06-25 19:18:01 +02:00
Beef/BeefLibs/corlib/src/IParseable.bf

11 lines
No EOL
182 B
Beef

namespace System;
interface IParseable<T>
{
public static Result<T> Parse(StringView val);
}
interface IParseable<T, TErr>
{
public static Result<T,TErr> Parse(StringView val);
}