Skip to content
master
Go to file
Code

Latest commit

 

Git stats

Files

Permalink
Failed to load latest commit information.

README.md

Swift Module Defines

THIS only refects defines in MacOSX.

This is deprecated! Please refer apple/swift.

In detail, the swift/stdlib/public/SDK/ folder.

hiden features

  • @transparent means inline
  • @conversion __conversion means implicitly type conversion

My Notes and Analysis

Notes

Notes

  • Swift: standard library
  • SwiftShims: type compatiablity helper module
  • ObjectiveC: bridge
  • simd: the simd lib
  • Darwin: /usr/include libs ( c standard library )

For Emacs users (misc dir)

dump.py + keywords.text makes an ac-user-dictionary. :)

The result is in misc/swift-mode

HOW TO Make auto-completion working

put swift-mode file to /path/to/ac-dict dir

(add-to-list 'ac-dictionary-directories "/path/to/ac-dict")
(require 'swift-mode)
(add-hook 'swift-mode-hook
          #'(lambda ()
            (add-to-list 'ac-sources 'ac-source-files-in-current-dir)
            (electric-pair-mode t)
            (add-to-list 'ac-sources 'ac-source-dictionary)
            ))

About

Swift standard library defines. dump from Xcode

Resources

Releases

No releases published

Packages

No packages published
You can’t perform that action at this time.