Skip to content

Instantly share code, notes, and snippets.

View akarsh's full-sized avatar

Akarsh Seggemu akarsh

View GitHub Profile
import Foundation
var testingSet = Set<Int>()
// acessing and modifying sets
testingSet.insert(1)
print(testingSet)
print(testingSet.count)
@akarsh
akarsh / Podfile
Created August 18, 2019 12:15
Pod file configuration to supress CLANG documentation warning in Xcode 10+
post_install do |installer|
installer.pods_project.targets.each do |target|
target.build_configurations.each do |config|
config.build_settings['CLANG_WARN_DOCUMENTATION_COMMENTS'] = 'NO'
end
end
end