We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 996f0ac commit b136648Copy full SHA for b136648
Source/Array.swift
@@ -703,18 +703,18 @@ public extension Swift.Array : ISequence<T> {
703
#endif
704
705
#if ECHOES
706
- func GetEnumerator() -> IEnumerator! {
+ public func GetEnumerator() -> IEnumerator! {
707
return list.GetEnumerator()
708
}
709
710
@Implements(typeOf(IEnumerable<T>), "GetEnumerator")
711
- func GetEnumeratorT() -> IEnumerator<T>! {
+ public func GetEnumeratorT() -> IEnumerator<T>! {
712
713
714
715
716
#if ISLAND
717
- func GetEnumerator() -> IEnumerator<T>! {
+ public func GetEnumerator() -> IEnumerator<T>! {
718
719
720
0 commit comments