Huh. Surprised there is no trademark issues.
aha, I see why.
http://tmsearch.uspto.gov/bin/showfield?f=doc&state=4801:djnmx6.2.40
http://tmsearch.uspto.gov/bin/showfield?f=doc&state=4801:djnmx6.2.41
I guess apple-swift would be following the trademark. Not sure what the
OpenSrc community thinks.
Oops nvm. they are both meaning this swift
On Fri, Sep 16, 2016 at 11:08 AM, Kevin Choi wrote:
> Huh. Surprised there is no trademark issues.
>
> aha, I see why.
> http://tmsearch.uspto.gov/bin/showfield?f=doc&state=4801:djnmx6.2.40
> http://tmsearch.uspto.gov/bin/showfield?f=doc&state=4801:djnm
b.sw:
func findIndex(array: [T], _ valueToFind: T) -> Int? {
for (index, value) in array.enumerated() {
if value == valueToFind {
return index
}
}
return nil
}
let foundAtIndex = findIndex([1, 2, 3, 4], 3)
print(foundAtIndex == 2) // true
==
Just curious, are there scenarios other than simple local build that you
wish to speed up? I don't know if ccache offers much more than incremental
build by existing build systems.
-Kevin
On Tue, Sep 27, 2016 at 11:09 AM, Oscar Bonilla via swift-dev <
swift-dev@swift.org> wrote:
> Hello swift dev
> getting the ABI slightly wrong
Does this call for something like a validation pass? It would seem
appropriate to apply it to SIL and not LLVM IR since it's inter-language
ABI specific to Swift frontend.
On Tue, Oct 11, 2016 at 8:17 PM, Daniel Dunbar via swift-dev <
swift-dev@swift.org> wrote: