Skip to content

Instantly share code, notes, and snippets.

View Isabellle's full-sized avatar

Isabelle Lepez Isabellle

View GitHub Profile
import Foundation
extension String
{
var length: Int {
get {
return countElements(self)
}
}
@riyazMuhammad
riyazMuhammad / CustomItemClickListener.java
Last active December 30, 2020 15:10
Easy Implementation of RecyclerView custom onItemClickListener
public interface CustomItemClickListener {
public void onItemClick(View v, int position);
}