Skip to content

Commit b136648

Browse files
committed
ISequence for Array (made public, didn't expect that to be necessary?)
1 parent 996f0ac commit b136648

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

Source/Array.swift

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -703,18 +703,18 @@ public extension Swift.Array : ISequence<T> {
703703
#endif
704704

705705
#if ECHOES
706-
func GetEnumerator() -> IEnumerator! {
706+
public func GetEnumerator() -> IEnumerator! {
707707
return list.GetEnumerator()
708708
}
709709

710710
@Implements(typeOf(IEnumerable<T>), "GetEnumerator")
711-
func GetEnumeratorT() -> IEnumerator<T>! {
711+
public func GetEnumeratorT() -> IEnumerator<T>! {
712712
return list.GetEnumerator()
713713
}
714714
#endif
715715

716716
#if ISLAND
717-
func GetEnumerator() -> IEnumerator<T>! {
717+
public func GetEnumerator() -> IEnumerator<T>! {
718718
return list.GetEnumerator()
719719
}
720720
#endif

0 commit comments

Comments
 (0)