├── .gitignore ├── .sourcery.yml ├── Images ├── iOSa.png ├── iOSb.png ├── iOSc.png ├── macOSa.png ├── macOSb.png └── macOSc.png ├── LICENSE.txt ├── Package.swift ├── README.md ├── Sources ├── Generated │ ├── TablerGrid+AutoInit.generated.swift │ ├── TablerGrid1+AutoInit.generated.swift │ ├── TablerGrid1B+AutoInit.generated.swift │ ├── TablerGrid1C+AutoInit.generated.swift │ ├── TablerGridB+AutoInit.generated.swift │ ├── TablerGridC+AutoInit.generated.swift │ ├── TablerGridM+AutoInit.generated.swift │ ├── TablerGridMB+AutoInit.generated.swift │ ├── TablerGridMC+AutoInit.generated.swift │ ├── TablerList+AutoInit.generated.swift │ ├── TablerList1+AutoInit.generated.swift │ ├── TablerList1B+AutoInit.generated.swift │ ├── TablerList1C+AutoInit.generated.swift │ ├── TablerListB+AutoInit.generated.swift │ ├── TablerListC+AutoInit.generated.swift │ ├── TablerListM+AutoInit.generated.swift │ ├── TablerListMB+AutoInit.generated.swift │ ├── TablerListMC+AutoInit.generated.swift │ ├── TablerStack+AutoInit.generated.swift │ ├── TablerStack1+AutoInit.generated.swift │ ├── TablerStack1B+AutoInit.generated.swift │ ├── TablerStack1C+AutoInit.generated.swift │ ├── TablerStackB+AutoInit.generated.swift │ ├── TablerStackC+AutoInit.generated.swift │ ├── TablerStackM+AutoInit.generated.swift │ ├── TablerStackMB+AutoInit.generated.swift │ └── TablerStackMC+AutoInit.generated.swift ├── Grid │ ├── Internal │ │ ├── BaseGrid.swift │ │ ├── GridItemMod.swift │ │ ├── GridItemMod1.swift │ │ └── GridItemModM.swift │ ├── TablerGrid.swift │ ├── TablerGrid1.swift │ ├── TablerGrid1B.swift │ ├── TablerGrid1C.swift │ ├── TablerGridB.swift │ ├── TablerGridC.swift │ ├── TablerGridConfig.swift │ ├── TablerGridM.swift │ ├── TablerGridMB.swift │ └── TablerGridMC.swift ├── Internal │ ├── BaseTable.swift │ ├── ObservableHolder.swift │ └── TablerSpacedConfig.swift ├── List │ ├── Internal │ │ ├── BaseList.swift │ │ ├── BaseList1.swift │ │ ├── BaseListM.swift │ │ └── ListRowMod.swift │ ├── TablerList.swift │ ├── TablerList1.swift │ ├── TablerList1B.swift │ ├── TablerList1C.swift │ ├── TablerListB.swift │ ├── TablerListC.swift │ ├── TablerListConfig.swift │ ├── TablerListM.swift │ ├── TablerListMB.swift │ └── TablerListMC.swift ├── Stack │ ├── Internal │ │ ├── BaseStack.swift │ │ ├── StackRowMod.swift │ │ ├── StackRowMod1.swift │ │ └── StackRowModM.swift │ ├── TablerStack.swift │ ├── TablerStack1.swift │ ├── TablerStack1B.swift │ ├── TablerStack1C.swift │ ├── TablerStackB.swift │ ├── TablerStackC.swift │ ├── TablerStackConfig.swift │ ├── TablerStackM.swift │ ├── TablerStackMB.swift │ └── TablerStackMC.swift ├── TablerConfig.swift ├── TablerContext.swift └── TablerSort.swift └── Templates └── AutoInit.stencil /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openalloc/SwiftTabler/HEAD/.gitignore -------------------------------------------------------------------------------- /.sourcery.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openalloc/SwiftTabler/HEAD/.sourcery.yml -------------------------------------------------------------------------------- /Images/iOSa.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openalloc/SwiftTabler/HEAD/Images/iOSa.png -------------------------------------------------------------------------------- /Images/iOSb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openalloc/SwiftTabler/HEAD/Images/iOSb.png -------------------------------------------------------------------------------- /Images/iOSc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openalloc/SwiftTabler/HEAD/Images/iOSc.png -------------------------------------------------------------------------------- /Images/macOSa.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openalloc/SwiftTabler/HEAD/Images/macOSa.png -------------------------------------------------------------------------------- /Images/macOSb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openalloc/SwiftTabler/HEAD/Images/macOSb.png -------------------------------------------------------------------------------- /Images/macOSc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openalloc/SwiftTabler/HEAD/Images/macOSc.png -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openalloc/SwiftTabler/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /Package.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openalloc/SwiftTabler/HEAD/Package.swift -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openalloc/SwiftTabler/HEAD/README.md -------------------------------------------------------------------------------- /Sources/Generated/TablerGrid+AutoInit.generated.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openalloc/SwiftTabler/HEAD/Sources/Generated/TablerGrid+AutoInit.generated.swift -------------------------------------------------------------------------------- /Sources/Generated/TablerGrid1+AutoInit.generated.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openalloc/SwiftTabler/HEAD/Sources/Generated/TablerGrid1+AutoInit.generated.swift -------------------------------------------------------------------------------- /Sources/Generated/TablerGrid1B+AutoInit.generated.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openalloc/SwiftTabler/HEAD/Sources/Generated/TablerGrid1B+AutoInit.generated.swift -------------------------------------------------------------------------------- /Sources/Generated/TablerGrid1C+AutoInit.generated.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openalloc/SwiftTabler/HEAD/Sources/Generated/TablerGrid1C+AutoInit.generated.swift -------------------------------------------------------------------------------- /Sources/Generated/TablerGridB+AutoInit.generated.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openalloc/SwiftTabler/HEAD/Sources/Generated/TablerGridB+AutoInit.generated.swift -------------------------------------------------------------------------------- /Sources/Generated/TablerGridC+AutoInit.generated.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openalloc/SwiftTabler/HEAD/Sources/Generated/TablerGridC+AutoInit.generated.swift -------------------------------------------------------------------------------- /Sources/Generated/TablerGridM+AutoInit.generated.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openalloc/SwiftTabler/HEAD/Sources/Generated/TablerGridM+AutoInit.generated.swift -------------------------------------------------------------------------------- /Sources/Generated/TablerGridMB+AutoInit.generated.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openalloc/SwiftTabler/HEAD/Sources/Generated/TablerGridMB+AutoInit.generated.swift -------------------------------------------------------------------------------- /Sources/Generated/TablerGridMC+AutoInit.generated.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openalloc/SwiftTabler/HEAD/Sources/Generated/TablerGridMC+AutoInit.generated.swift -------------------------------------------------------------------------------- /Sources/Generated/TablerList+AutoInit.generated.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openalloc/SwiftTabler/HEAD/Sources/Generated/TablerList+AutoInit.generated.swift -------------------------------------------------------------------------------- /Sources/Generated/TablerList1+AutoInit.generated.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openalloc/SwiftTabler/HEAD/Sources/Generated/TablerList1+AutoInit.generated.swift -------------------------------------------------------------------------------- /Sources/Generated/TablerList1B+AutoInit.generated.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openalloc/SwiftTabler/HEAD/Sources/Generated/TablerList1B+AutoInit.generated.swift -------------------------------------------------------------------------------- /Sources/Generated/TablerList1C+AutoInit.generated.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openalloc/SwiftTabler/HEAD/Sources/Generated/TablerList1C+AutoInit.generated.swift -------------------------------------------------------------------------------- /Sources/Generated/TablerListB+AutoInit.generated.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openalloc/SwiftTabler/HEAD/Sources/Generated/TablerListB+AutoInit.generated.swift -------------------------------------------------------------------------------- /Sources/Generated/TablerListC+AutoInit.generated.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openalloc/SwiftTabler/HEAD/Sources/Generated/TablerListC+AutoInit.generated.swift -------------------------------------------------------------------------------- /Sources/Generated/TablerListM+AutoInit.generated.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openalloc/SwiftTabler/HEAD/Sources/Generated/TablerListM+AutoInit.generated.swift -------------------------------------------------------------------------------- /Sources/Generated/TablerListMB+AutoInit.generated.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openalloc/SwiftTabler/HEAD/Sources/Generated/TablerListMB+AutoInit.generated.swift -------------------------------------------------------------------------------- /Sources/Generated/TablerListMC+AutoInit.generated.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openalloc/SwiftTabler/HEAD/Sources/Generated/TablerListMC+AutoInit.generated.swift -------------------------------------------------------------------------------- /Sources/Generated/TablerStack+AutoInit.generated.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openalloc/SwiftTabler/HEAD/Sources/Generated/TablerStack+AutoInit.generated.swift -------------------------------------------------------------------------------- /Sources/Generated/TablerStack1+AutoInit.generated.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openalloc/SwiftTabler/HEAD/Sources/Generated/TablerStack1+AutoInit.generated.swift -------------------------------------------------------------------------------- /Sources/Generated/TablerStack1B+AutoInit.generated.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openalloc/SwiftTabler/HEAD/Sources/Generated/TablerStack1B+AutoInit.generated.swift -------------------------------------------------------------------------------- /Sources/Generated/TablerStack1C+AutoInit.generated.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openalloc/SwiftTabler/HEAD/Sources/Generated/TablerStack1C+AutoInit.generated.swift -------------------------------------------------------------------------------- /Sources/Generated/TablerStackB+AutoInit.generated.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openalloc/SwiftTabler/HEAD/Sources/Generated/TablerStackB+AutoInit.generated.swift -------------------------------------------------------------------------------- /Sources/Generated/TablerStackC+AutoInit.generated.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openalloc/SwiftTabler/HEAD/Sources/Generated/TablerStackC+AutoInit.generated.swift -------------------------------------------------------------------------------- /Sources/Generated/TablerStackM+AutoInit.generated.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openalloc/SwiftTabler/HEAD/Sources/Generated/TablerStackM+AutoInit.generated.swift -------------------------------------------------------------------------------- /Sources/Generated/TablerStackMB+AutoInit.generated.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openalloc/SwiftTabler/HEAD/Sources/Generated/TablerStackMB+AutoInit.generated.swift -------------------------------------------------------------------------------- /Sources/Generated/TablerStackMC+AutoInit.generated.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openalloc/SwiftTabler/HEAD/Sources/Generated/TablerStackMC+AutoInit.generated.swift -------------------------------------------------------------------------------- /Sources/Grid/Internal/BaseGrid.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openalloc/SwiftTabler/HEAD/Sources/Grid/Internal/BaseGrid.swift -------------------------------------------------------------------------------- /Sources/Grid/Internal/GridItemMod.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openalloc/SwiftTabler/HEAD/Sources/Grid/Internal/GridItemMod.swift -------------------------------------------------------------------------------- /Sources/Grid/Internal/GridItemMod1.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openalloc/SwiftTabler/HEAD/Sources/Grid/Internal/GridItemMod1.swift -------------------------------------------------------------------------------- /Sources/Grid/Internal/GridItemModM.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openalloc/SwiftTabler/HEAD/Sources/Grid/Internal/GridItemModM.swift -------------------------------------------------------------------------------- /Sources/Grid/TablerGrid.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openalloc/SwiftTabler/HEAD/Sources/Grid/TablerGrid.swift -------------------------------------------------------------------------------- /Sources/Grid/TablerGrid1.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openalloc/SwiftTabler/HEAD/Sources/Grid/TablerGrid1.swift -------------------------------------------------------------------------------- /Sources/Grid/TablerGrid1B.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openalloc/SwiftTabler/HEAD/Sources/Grid/TablerGrid1B.swift -------------------------------------------------------------------------------- /Sources/Grid/TablerGrid1C.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openalloc/SwiftTabler/HEAD/Sources/Grid/TablerGrid1C.swift -------------------------------------------------------------------------------- /Sources/Grid/TablerGridB.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openalloc/SwiftTabler/HEAD/Sources/Grid/TablerGridB.swift -------------------------------------------------------------------------------- /Sources/Grid/TablerGridC.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openalloc/SwiftTabler/HEAD/Sources/Grid/TablerGridC.swift -------------------------------------------------------------------------------- /Sources/Grid/TablerGridConfig.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openalloc/SwiftTabler/HEAD/Sources/Grid/TablerGridConfig.swift -------------------------------------------------------------------------------- /Sources/Grid/TablerGridM.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openalloc/SwiftTabler/HEAD/Sources/Grid/TablerGridM.swift -------------------------------------------------------------------------------- /Sources/Grid/TablerGridMB.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openalloc/SwiftTabler/HEAD/Sources/Grid/TablerGridMB.swift -------------------------------------------------------------------------------- /Sources/Grid/TablerGridMC.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openalloc/SwiftTabler/HEAD/Sources/Grid/TablerGridMC.swift -------------------------------------------------------------------------------- /Sources/Internal/BaseTable.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openalloc/SwiftTabler/HEAD/Sources/Internal/BaseTable.swift -------------------------------------------------------------------------------- /Sources/Internal/ObservableHolder.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openalloc/SwiftTabler/HEAD/Sources/Internal/ObservableHolder.swift -------------------------------------------------------------------------------- /Sources/Internal/TablerSpacedConfig.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openalloc/SwiftTabler/HEAD/Sources/Internal/TablerSpacedConfig.swift -------------------------------------------------------------------------------- /Sources/List/Internal/BaseList.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openalloc/SwiftTabler/HEAD/Sources/List/Internal/BaseList.swift -------------------------------------------------------------------------------- /Sources/List/Internal/BaseList1.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openalloc/SwiftTabler/HEAD/Sources/List/Internal/BaseList1.swift -------------------------------------------------------------------------------- /Sources/List/Internal/BaseListM.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openalloc/SwiftTabler/HEAD/Sources/List/Internal/BaseListM.swift -------------------------------------------------------------------------------- /Sources/List/Internal/ListRowMod.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openalloc/SwiftTabler/HEAD/Sources/List/Internal/ListRowMod.swift -------------------------------------------------------------------------------- /Sources/List/TablerList.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openalloc/SwiftTabler/HEAD/Sources/List/TablerList.swift -------------------------------------------------------------------------------- /Sources/List/TablerList1.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openalloc/SwiftTabler/HEAD/Sources/List/TablerList1.swift -------------------------------------------------------------------------------- /Sources/List/TablerList1B.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openalloc/SwiftTabler/HEAD/Sources/List/TablerList1B.swift -------------------------------------------------------------------------------- /Sources/List/TablerList1C.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openalloc/SwiftTabler/HEAD/Sources/List/TablerList1C.swift -------------------------------------------------------------------------------- /Sources/List/TablerListB.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openalloc/SwiftTabler/HEAD/Sources/List/TablerListB.swift -------------------------------------------------------------------------------- /Sources/List/TablerListC.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openalloc/SwiftTabler/HEAD/Sources/List/TablerListC.swift -------------------------------------------------------------------------------- /Sources/List/TablerListConfig.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openalloc/SwiftTabler/HEAD/Sources/List/TablerListConfig.swift -------------------------------------------------------------------------------- /Sources/List/TablerListM.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openalloc/SwiftTabler/HEAD/Sources/List/TablerListM.swift -------------------------------------------------------------------------------- /Sources/List/TablerListMB.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openalloc/SwiftTabler/HEAD/Sources/List/TablerListMB.swift -------------------------------------------------------------------------------- /Sources/List/TablerListMC.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openalloc/SwiftTabler/HEAD/Sources/List/TablerListMC.swift -------------------------------------------------------------------------------- /Sources/Stack/Internal/BaseStack.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openalloc/SwiftTabler/HEAD/Sources/Stack/Internal/BaseStack.swift -------------------------------------------------------------------------------- /Sources/Stack/Internal/StackRowMod.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openalloc/SwiftTabler/HEAD/Sources/Stack/Internal/StackRowMod.swift -------------------------------------------------------------------------------- /Sources/Stack/Internal/StackRowMod1.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openalloc/SwiftTabler/HEAD/Sources/Stack/Internal/StackRowMod1.swift -------------------------------------------------------------------------------- /Sources/Stack/Internal/StackRowModM.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openalloc/SwiftTabler/HEAD/Sources/Stack/Internal/StackRowModM.swift -------------------------------------------------------------------------------- /Sources/Stack/TablerStack.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openalloc/SwiftTabler/HEAD/Sources/Stack/TablerStack.swift -------------------------------------------------------------------------------- /Sources/Stack/TablerStack1.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openalloc/SwiftTabler/HEAD/Sources/Stack/TablerStack1.swift -------------------------------------------------------------------------------- /Sources/Stack/TablerStack1B.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openalloc/SwiftTabler/HEAD/Sources/Stack/TablerStack1B.swift -------------------------------------------------------------------------------- /Sources/Stack/TablerStack1C.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openalloc/SwiftTabler/HEAD/Sources/Stack/TablerStack1C.swift -------------------------------------------------------------------------------- /Sources/Stack/TablerStackB.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openalloc/SwiftTabler/HEAD/Sources/Stack/TablerStackB.swift -------------------------------------------------------------------------------- /Sources/Stack/TablerStackC.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openalloc/SwiftTabler/HEAD/Sources/Stack/TablerStackC.swift -------------------------------------------------------------------------------- /Sources/Stack/TablerStackConfig.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openalloc/SwiftTabler/HEAD/Sources/Stack/TablerStackConfig.swift -------------------------------------------------------------------------------- /Sources/Stack/TablerStackM.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openalloc/SwiftTabler/HEAD/Sources/Stack/TablerStackM.swift -------------------------------------------------------------------------------- /Sources/Stack/TablerStackMB.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openalloc/SwiftTabler/HEAD/Sources/Stack/TablerStackMB.swift -------------------------------------------------------------------------------- /Sources/Stack/TablerStackMC.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openalloc/SwiftTabler/HEAD/Sources/Stack/TablerStackMC.swift -------------------------------------------------------------------------------- /Sources/TablerConfig.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openalloc/SwiftTabler/HEAD/Sources/TablerConfig.swift -------------------------------------------------------------------------------- /Sources/TablerContext.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openalloc/SwiftTabler/HEAD/Sources/TablerContext.swift -------------------------------------------------------------------------------- /Sources/TablerSort.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openalloc/SwiftTabler/HEAD/Sources/TablerSort.swift -------------------------------------------------------------------------------- /Templates/AutoInit.stencil: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openalloc/SwiftTabler/HEAD/Templates/AutoInit.stencil --------------------------------------------------------------------------------