I'm implementing a fluent builder pattern that requires accepting enumerables in a static extension method and iterating through its contents, while applying a functor to the enumerable's contents. As in (not the actual code, just an illustration):
public static IValidator<IEnumerable<T>> Each<T>(
this IValidator<IEnumerable<T>> enumerable,
Func<T, bool> action)
{
foreach (T value in enumerable)
action(value);
return validator;
}
This works pretty well for enumerables but fails for inherited types/interfaces. Let's say:
IValidator<IEnumerable<Guid>> validator = ...;
IEnumerable<Guid> guids = ...;
validator.Each(guids, guid => guid != Guid.Empty); // ok
IList<Guid> guids = ...;
validator.Each(guids, guid => guid != Guid.Empty); // doesn't compile (see below)
The exception is:
IValidator<IList<Guid>>does not contain a definition for 'Each' and no extension method 'Each' accepting a first argument of typeIValidator<IList<Guid>>could be found (are you missing a using directive or an assembly reference?
My question is about the inheritance chain of IValidator<T> and, more specifically, its generic type arguments T. Why is type IValidator<IEnumerable<T>> not assignable from IValidator<IList<T>>? There's no circumstance I can think of on which IList<T> is not an IEnumerable<T> (given the same T).
Constraining the generic argument to T : IEnumerable<R> does work but that requires two type arguments (T and R) which I'd like to avoid, if possible.
Any thoughts? Better solutions? Thanks.
Func<T, bool>because it requires less code thanAction<T>to write the calling lambdas in the example that follows. I was being a little lazy. :-) – lsoliveira Aug 31 '12 at 13:48IValidator<T>tryIValidator<out T>orIValidator<in T>, I forget which one. You could also just usevar guids = validator.Each.....which could help, though it won't remove your design issue. – Jason Evans Aug 31 '12 at 13:53