public static int Get <T>(IEnumerable <T> objects) => CollectionUtil.IsNullOrEmpty(objects) ? 0 : Combine(objects.Select((Func <T, int>)Get));