Billy Keane
William Keane is an Irish retired hurler who played as a left corner-back for the Offaly senior team.[1]
Personal information | |||
---|---|---|---|
Irish name | Liam Ó Catháin | ||
Sport | Hurling | ||
Position | Left corner-back | ||
Born | Banagher, County Offaly, Ireland | ||
Club(s) | |||
Years | Club | ||
St. Rynagh's | |||
Club titles | |||
Leinster titles | 1 | ||
Inter-county(ies)* | |||
Years | County | Apps (scores) | |
1984 | Offaly | 0 (0-00) | |
Inter-county titles | |||
Leinster titles | 0 | ||
All-Irelands | 0 | ||
NHL | 0 | ||
All Stars | 0 | ||
*Inter County team apps and scores correct as of 20:06, 30 June 2014. |
Born in Banagher, County Offaly, Keane first played competitive hurling in his youth. He made his senior debut with Offaly during the 1984-85 National League, but was dropped from the team before the championship. During his brief career he enjoyed little success.
At club level Keane is a one-time Leinster medallist with St. Rynagh's. He also won numerous championship medals with the club.[2]
Honours
gollark: And 🦀Safe Rust™🦀.
gollark: See, this is much nicer.
gollark: ```rustpub struct List<T> { head: Link<T>,}type Link<T> = Option<Box<Node<T>>>;struct Node<T> { elem: T, next: Link<T>,}impl<T> List<T> { pub fn new() -> Self { List { head: None } } pub fn push(&mut self, elem: T) { let new_node = Box::new(Node { elem: elem, next: self.head.take(), }); self.head = Some(new_node); } pub fn pop(&mut self) -> Option<T> { self.head.take().map(|node| { self.head = node.next; node.elem }) }}impl<T> Drop for List<T> { fn drop(&mut self) { let mut cur_link = self.head.take(); while let Some(mut boxed_node) = cur_link { cur_link = boxed_node.next.take(); } }}```
gollark: ... or at all?
gollark: You don't have a thing to efficiently deallocate the list.
References
- "Hurler look-up: Billy Keane". Uibh Fháilí website. Retrieved 30 June 2014.
- "Club history". St. Rynagh's GAA website. Archived from the original on 17 October 2013. Retrieved 30 June 2014.
This article is issued from Wikipedia. The text is licensed under Creative Commons - Attribution - Sharealike. Additional terms may apply for the media files.