mirror of
https://github.com/dscyrescotti/Memola.git
synced 2026-03-26 19:31:18 +01:00
18 lines
277 B
Swift
18 lines
277 B
Swift
//
|
|
// Array++.swift
|
|
// Memola
|
|
//
|
|
// Created by Dscyre Scotti on 5/4/24.
|
|
//
|
|
|
|
import Foundation
|
|
|
|
extension Array {
|
|
mutating func append(_ element: Element, capacity: Int) {
|
|
if count >= capacity {
|
|
remove(at: 0)
|
|
}
|
|
append(element)
|
|
}
|
|
}
|