Skip to content

Instantly share code, notes, and snippets.

@hachinobu
Created July 19, 2015 06:48
Show Gist options
  • Save hachinobu/d8dac5fa3f9601c6a0f5 to your computer and use it in GitHub Desktop.
Save hachinobu/d8dac5fa3f9601c6a0f5 to your computer and use it in GitHub Desktop.
ArrayでremoveObject
import Foundation
public func removeObject<T : Equatable>(object: T, inout fromArray array: [T])
{
var index = find(array, object)
array.removeAtIndex(index!)
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment