17 lines
274 B
C#
17 lines
274 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace BS.Shared.Extensions
|
|
{
|
|
public static class BoolExtensions
|
|
{
|
|
public static bool Implies(this bool a, bool b)
|
|
{
|
|
return !a || b;
|
|
}
|
|
}
|
|
}
|