#Every Single Option Under The Sun
- optimization level options
- automatic crashing options
- debug info options
- swift internal options
- swift debug/development internal options
- linker-specific options
- mode options
| NSAccessibility.h:APPKIT_EXTERN void NSAccessibilityRaiseBadArgumentException(__null_unspecified id element, NSString * __null_unspecified attribute, __null_unspecified id value) NS_DEPRECATED_MAC(10_1, 10_11, "Exceptions are no longer appropriate for indicating errors in accessibility API. Unexpected values should be handled through appropriate type checking."); | |
| NSAlignmentFeedbackFilter.h:NS_CLASS_AVAILABLE(10_11, NA) | |
| NSAttributedString.h:} NS_ENUM_AVAILABLE(10_11, 9_0); | |
| NSAttributedString.h:APPKIT_EXTERN NSString * NSDefaultAttributesDocumentAttribute NS_AVAILABLE(10_11, 7_0); // @"DefaultAttributes", NSDictionary containing attributes to be applied to plain files. Used by reader methods. This key in options can specify the default attributes applied to the entire document contents. The document attributes can contain this key indicating the actual attributes used. | |
| NSAttributedString.h:- (nullable instancetype)initWithURL:(NSURL *)url options:(NSDictionary<NSString *, id> *)options documentAttributes: |
#Every Single Option Under The Sun
| {- A straightforward version of Church’s simple type theory is the following system T -} | |
| module T where | |
| open import Data.Nat | |
| -- The type of contexts. | |
| data Γ (X : Set) : Set where | |
| ε : Γ X | |
| _::_ : (γ : Γ X) → X → Γ X | |
| infixl 4 _::_ |
| // | |
| // NUITouchDevice.h | |
| // NUIKit | |
| // | |
| // Created by Robert Widmann on 4/30/15. | |
| // Copyright (c) 2015 CodaFi. All rights reserved. | |
| // Released under the MIT license. | |
| // | |
| #import <Foundation/Foundation.h> |
| final class Nat<F> : FunctorOf<F> { | |
| let pred : Optional<F> | |
| override init() { | |
| self.pred = nil | |
| } | |
| init(pred : F) { | |
| self.pred = pred | |
| } |
| // | |
| // NUIProtocolChecker.h | |
| // NUIKit | |
| // | |
| // Created by Robert Widmann on 1/14/15. | |
| // Copyright (c) 2015 CodaFi. All rights reserved. | |
| // Released under the MIT license. | |
| // | |
| #import <Foundation/Foundation.h> |
| // | |
| // NUIDebugObject.h | |
| // NUIKit | |
| // | |
| // Created by Robert Widmann on 2/23/14. | |
| // Copyright (c) 2014 CodaFi. All rights reserved. | |
| // Released under the MIT license. | |
| // | |
| #if ((__clang_major__ >= 5) && (__clang_minor__ >= 1)) || (__clang_major__ > 5) |
| // | |
| // NSView+NUIDebugHierarchy.h | |
| // NUIKit | |
| // | |
| // Created by Robert Widmann on 1/5/15. | |
| // Copyright (c) 2014 CodaFi. All rights reserved. | |
| // Released under the MIT license. | |
| // | |
| @interface NSView (NUIDebugHierarchy) |
| // | |
| // Yoneda.swift | |
| // Basis | |
| // | |
| // Created by Robert Widmann on 12/11/14. | |
| // Copyright (c) 2014 Robert Widmann. All rights reserved. | |
| // | |
| import Basis |
| /// Sectional Sale | |
| prefix operator >> {} | |
| postfix operator >> {} | |
| public prefix func >>(rhs: UInt16) -> UInt16 -> UInt16 { | |
| return { lhs in lhs >> rhs } | |
| } | |
| public postfix func >>(lhs: UInt16) -> UInt16 -> UInt16 { |