1using System.Collections.Generic; 2 3namespace jive 4{ 5 public interface Registry<out T> : IEnumerable<T> 6 { 7 IEnumerable<T> all(); 8 } 9}