Midland Hockey Union

Midland Hockey Union are a District operating within the Scottish Hockey Union and cover North East Fife, Angus, Dundee and Perthshire.

Midland operate local leagues both indoor and outdoor for both women and men.

Youth Squads

Midland have youth squads for the following age groups

U14's Mixed
U15's Boys
U15's Girls
U16's Boys
U16's Girls
U18's Boys
U18's Girls

Clubs

There are a number of clubs operating within Midland District - these include

Blairgowrie Ladies Hockey Club - Ladies Only
Brechin Thistle Ladies Hockey Club - Ladies Only
Dundee Wanderers Hockey Club - Ladies and Men
Dundee University - Ladies and Men
FMGM Monarchs Hockey Club - Ladies and Men
Grove Menzieshill - Ladies and Men
Harris FP's Hockey Club - Men only
Kinross Hockey Club - Ladies and juniors only
Madras FP's Hockey Club - Ladies and Men
Perthshire Hockey Club - Ladies and Men
St. Andrews University - Ladies and Men
Stirling University - Ladies only

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.
gollark: Collections which work on a big chunk of memory or something *do* kind of have to use unsafe, linked lists or (some?) trees mostly don't.
gollark: And the unsafe stuff is better checked than in ©.
This article is issued from Wikipedia. The text is licensed under Creative Commons - Attribution - Sharealike. Additional terms may apply for the media files.