Max Moiseev
|
b2277939fe
|
Fixing tests
|
2015-12-18 16:22:24 -08:00 |
|
Max Moiseev
|
bc942090ee
|
cleaning up initializePointee/deinitializePointee, error messages and comments
|
2015-12-18 16:22:24 -08:00 |
|
Dmitri Gribenko
|
7e375df888
|
startsWith(): other => possiblePrefix
|
2015-12-18 16:22:24 -08:00 |
|
Dmitri Gribenko
|
1e26d22d80
|
IteratorOverOne.init(_:) => internal
|
2015-12-18 16:22:24 -08:00 |
|
Dmitri Gribenko
|
c07056ddaf
|
Mirrors: T => Subject
|
2015-12-18 16:22:24 -08:00 |
|
Dmitri Gribenko
|
e7b2666118
|
Set: maybeSuperset => possibleSuperset in argument labels
|
2015-12-18 16:22:24 -08:00 |
|
Dmitri Gribenko
|
06577273e9
|
var Sequence.enumerated => func
|
2015-12-18 16:22:24 -08:00 |
|
Max Moiseev
|
5ccc258f71
|
func underestimatedLength() => var underestimatedLength { get }
|
2015-12-18 16:22:24 -08:00 |
|
Max Moiseev
|
b3fcc5fefa
|
underestimateLength() => underestimatedLength()
|
2015-12-18 16:22:24 -08:00 |
|
Dave Abrahams
|
d72932e931
|
Replace Unmanaged with UnsafeReference
|
2015-12-18 16:22:24 -08:00 |
|
Dmitri Gribenko
|
f6c00e8377
|
String: var lowercased, uppercased => func
|
2015-12-18 16:20:01 -08:00 |
|
Dmitri Gribenko
|
2245f7505f
|
func _unsafeUnwrap() => var _unsafelyUnwrapped
|
2015-12-18 16:20:01 -08:00 |
|
Dmitri Gribenko
|
47d48e45ba
|
func customPlaygroundQuickLook() => var
|
2015-12-18 16:20:01 -08:00 |
|
Dmitri Gribenko
|
117b65393b
|
func customMirror() => var
|
2015-12-18 16:20:01 -08:00 |
|
Max Moiseev
|
3ab767a604
|
func superclassMirror() => var superclassMirror {get}
|
2015-12-18 16:20:01 -08:00 |
|
Max Moiseev
|
bbfcab8734
|
func isEmptyInput => var isEmptyInput {get}
|
2015-12-18 16:20:01 -08:00 |
|
Max Moiseev
|
50371821fe
|
reverse() => reversed()
|
2015-12-18 16:20:01 -08:00 |
|
Max Moiseev
|
e175a841bf
|
Unmanaged<T>.toOpaque() => OpaquePointer.init<T>()
|
2015-12-18 16:20:01 -08:00 |
|
Max Moiseev
|
497b348686
|
turning UnicodeScalar.isASCII etc into properties
|
2015-12-18 16:20:01 -08:00 |
|
Max Moiseev
|
ddd45f584d
|
Revert "removing Collection.split(_ separator: ...) in favor of the one in Sequence"
This reverts commit 6431d39f7ef3db7f434005a4df5971318c42a817.
|
2015-12-18 16:20:01 -08:00 |
|
Dmitri Gribenko
|
5498aa1938
|
stride(to:by:) => strideTo(_:by:)
and `stride(through:by:)` => `strideThrough(_:by:)`
|
2015-12-18 16:20:01 -08:00 |
|
Dmitri Gribenko
|
77376883f4
|
Collection.sortInPlace() => .sort()
|
2015-12-18 16:20:01 -08:00 |
|
Dmitri Gribenko
|
8f7c9ae3fd
|
Collection.sort() => .sorted()
|
2015-12-18 16:20:01 -08:00 |
|
Dmitri Gribenko
|
7a33fb124c
|
Remove an unsafeBitCast() that is not actually needed
|
2015-12-18 16:20:01 -08:00 |
|
Max Moiseev
|
514047b6ec
|
removing Collection.split(_ separator: ...) in favor of the one in Sequence
|
2015-12-18 16:20:01 -08:00 |
|
Max Moiseev
|
30c77a1833
|
Refactoring Sequence.split family of methods
|
2015-12-18 16:20:01 -08:00 |
|
Dmitri Gribenko
|
5b728dc859
|
Remove Range<Index> argument from Collection.partition()
collection.partition(i..<j) => collection[i..<j].partition()
|
2015-12-18 16:20:01 -08:00 |
|
Doug Gregor
|
2091e7f852
|
Merge remote-tracking branch 'origin/swift-3-api-guidelines' into swift-3-omit-needless-words
|
2015-12-18 10:54:46 -08:00 |
|
Doug Gregor
|
a97ab6dd14
|
Merge remote-tracking branch 'origin/master' into swift-3-api-guidelines
|
2015-12-18 10:15:47 -08:00 |
|
Dmitri Gribenko
|
6a66b3cff8
|
Merge pull request #561 from practicalswift/typos-again
[Typo] Replace PR#514-525 with one large PR
|
2015-12-18 03:37:02 -08:00 |
|
Dmitri Gribenko
|
f436764742
|
Merge pull request #616 from dduan/removeAll_speedup
[stdlib][performance] skip copying old values during removeAll(keepCapacity: true)
|
2015-12-17 22:43:22 -08:00 |
|
Chris Lattner
|
3ec6239df3
|
Merge pull request #549 from zerotypos-found/fix_typo
Fix typo (a --> an, an --> a)
|
2015-12-17 22:25:22 -08:00 |
|
Dmitri Gribenko
|
ca1f0bf4ad
|
Merge pull request #633 from PatrickPijnappel/patch-2
[stdlib] Remove explicit Equatable implementation for FloatingPointClassification
|
2015-12-17 21:40:57 -08:00 |
|
Max Moiseev
|
f4aaece75e
|
revisiting CString related String extensions
|
2015-12-17 17:27:29 -08:00 |
|
Dmitri Gribenko
|
61e2b30975
|
Merge pull request #615 from PatrickPijnappel/min-max
[stdlib] Refactor min()/max()
|
2015-12-17 17:14:52 -08:00 |
|
Maxim Moiseev
|
d2be97d856
|
change return type of String.fromCStringRepairingIllFormedUTF8
|
2015-12-17 17:08:02 -08:00 |
|
Dmitri Gribenko
|
156d29a2af
|
flatMap(): generic type parameter Intermediate => SegmentOfResult
|
2015-12-17 17:07:21 -08:00 |
|
Dmitri Gribenko
|
ebb3e45886
|
Sequence.{min,max}Element() => .min(), .max()
|
2015-12-17 17:07:01 -08:00 |
|
Dmitri Gribenko
|
9d4d9e8d41
|
Fix coding style in Stride.swift
|
2015-12-17 17:06:41 -08:00 |
|
Maxim Moiseev
|
9e50505970
|
internal or public // @testable initializers
|
2015-12-17 17:02:49 -08:00 |
|
Dmitri Gribenko
|
b580d55dfb
|
ObjectIdentifier.uintValue => {Int,UInt}.init(_: ObjectIdentifier)
|
2015-12-17 16:32:11 -08:00 |
|
Dmitri Gribenko
|
6eedc99016
|
UnicodeDecodingResult: case Result(...) => case ScalarValue(...)
|
2015-12-17 16:31:49 -08:00 |
|
Dmitri Gribenko
|
a97a0ddf2a
|
StaticString.stringValue => String.init(_:T)
|
2015-12-17 16:30:55 -08:00 |
|
Dmitri Gribenko
|
4cd48e0f56
|
public class VaListBuilder => internal class _VaListBuilder
|
2015-12-17 16:28:39 -08:00 |
|
Dmitri Gribenko
|
fef2d5db60
|
Remove IOU(Wrapped?) initializer, we prefer to use the implicit conversion instead
|
2015-12-17 16:28:20 -08:00 |
|
Dmitri Gribenko
|
6b2ad53f80
|
Remove no-arg initializers from Optional and IOU
We prefer 'nil' to be used instead.
|
2015-12-17 16:28:08 -08:00 |
|
Dmitri Gribenko
|
11855e40b2
|
Remove ImplicitlyUnwrappedOptional.{map,flatMap}
It is not possible to call these functions by usual means.
|
2015-12-17 16:27:23 -08:00 |
|
Maxim Moiseev
|
e7d516e597
|
String.lowercaseString and .uppercaseString => lowercased and uppercased
|
2015-12-17 16:26:32 -08:00 |
|
Dmitri Gribenko
|
9096a960ff
|
countStrings() => digits() in docs and tests
|
2015-12-17 16:25:07 -08:00 |
|
Dmitri Gribenko
|
15a9649062
|
Repeated(repeating:length:) => repeatElement(_:count:)
|
2015-12-17 16:24:47 -08:00 |
|