//
// Deletable.swift
// PaiaiDataKit
//
// Created by ffib on 2018/12/21.
// Copyright © 2018 yb. All rights reserved.
//
import Foundation
public protocol Deletable {
func remove(of index: Int)
func removeAll()
}
extension Deletable {
public func removeAll() {}
}
|