Skip to content
This repository has been archived by the owner on Mar 29, 2018. It is now read-only.

Changed extensions accessibility to public #125

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion ExSwift/Array.swift
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@

import Foundation

internal extension Array {
public extension Array {

private var indexesInterval: HalfOpenInterval<Int> { return HalfOpenInterval<Int>(0, self.count) }

Expand Down
2 changes: 1 addition & 1 deletion ExSwift/Bool.swift
Original file line number Diff line number Diff line change
Expand Up @@ -15,4 +15,4 @@ extension Bool {
return self
}

}
}
2 changes: 1 addition & 1 deletion ExSwift/Character.swift
Original file line number Diff line number Diff line change
Expand Up @@ -18,4 +18,4 @@ public extension Character {
return String(self).toInt()
}

}
}
2 changes: 1 addition & 1 deletion ExSwift/Dictionary.swift
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
import Foundation
import Swift

internal extension Dictionary {
public extension Dictionary {

/**
Difference of self and the input dictionaries.
Expand Down
2 changes: 1 addition & 1 deletion ExSwift/ExSwift.swift
Original file line number Diff line number Diff line change
Expand Up @@ -208,7 +208,7 @@ public class ExSwift {
:param: ignoreCase If true the NSRegularExpression is created with the NSRegularExpressionOptions.CaseInsensitive flag
:returns: NSRegularExpression object
*/
internal class func regex (pattern: String, ignoreCase: Bool = false) -> NSRegularExpression? {
public class func regex (pattern: String, ignoreCase: Bool = false) -> NSRegularExpression? {

var options = NSRegularExpressionOptions.DotMatchesLineSeparators.rawValue

Expand Down
2 changes: 1 addition & 1 deletion ExSwift/Range.swift
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@

import Foundation

internal extension Range {
public extension Range {

/**
For each element in the range invokes function.
Expand Down
2 changes: 1 addition & 1 deletion ExSwift/Sequence.swift
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@

import Foundation

internal extension SequenceOf {
public extension SequenceOf {

/**
First element of the sequence.
Expand Down