1701: Remove unneeded file r=pksunkara a=CreepySkeleton



Co-authored-by: CreepySkeleton <creepy-skeleton@yandex.ru>
This commit is contained in:
bors[bot] 2020-02-21 09:51:56 +00:00 committed by GitHub
commit cc79c432a4
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -1,25 +0,0 @@
struct RelationArg<'a, T> {
args: Vec<T>,
value: Option<&'a [u8]>,
modifier: RelationModifier
}
enum RelationModifier {
All,
Any,
None
}
enum RelationKind<'a, T> {
Present(RelationArg<'a, T>),
NotPresent(RelationArg<'a, T>),
None
}
struct Relations<'a, T>(Vec<RelationKind<'a, T>>);
impl<'a, T> Relation<'a, T> where T: Eq {
fn is_sat(&self, &[T]) -> bool {
for r in self.
}
}