All Downloads are FREE. Search and download functionalities are using the official Maven repository.

swift.APIHelper.mustache Maven / Gradle / Ivy

There is a newer version: 3.0.0-rc1
Show newest version
// APIHelper.swift
//
// Generated by swagger-codegen
// https://github.com/swagger-api/swagger-codegen
//

class APIHelper {
    static func rejectNil(source: [String:AnyObject?]) -> [String:AnyObject]? {
        var destination = [String:AnyObject]()
        for (key, nillableValue) in source {
            if let value: AnyObject = nillableValue {
                destination[key] = value
            }
        }

        if destination.isEmpty {
            return nil
        }
        return destination
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy