david-swift d8de611510 Add support for auto-generated widget bindings
Additionally fix an update problem occurring with custom views
2024-01-22 21:45:31 +01:00

18 lines
270 B
Swift

//
// Int.swift
// Adwaita
//
// Created by david-swift on 15.01.24.
//
extension Int: Identifiable {
/// Get the integer itself as the identifier.
public var id: Int { self }
/// The C integer.
public var cInt: Int32 {
.init(self)
}
}