Communauté de communes du Pays de l'Ourcq
The Communauté de communes du Pays de l'Ourcq is a federation of municipalities (communauté de communes) in the Seine-et-Marne département and in the Île-de-France région of France.
Pays de l'Ourcq | |
---|---|
Country | France |
Region | Île-de-France |
Department | Seine-et-Marne |
No. of communes | 22 |
Established | December 1973 |
Seat | Ocquerre |
Government | |
• President | Claude Courtier |
Area | |
• Total | 234.53 km2 (90.55 sq mi) |
Population (2014) | |
• Total | 18,371 |
• Density | 78/km2 (200/sq mi) |
Website | www |
Composition
The communauté de communes consists of the following 22 communes:[1][2]
- Armentières-en-Brie
- Cocherel
- Congis-sur-Thérouanne
- Coulombs-en-Valois
- Crouy-sur-Ourcq
- Dhuisy
- Douy-la-Ramée
- Étrépilly
- Germigny-sous-Coulombs
- Isles-les-Meldeuses
- Jaignes
- Lizy-sur-Ourcq
- Marcilly
- Mary-sur-Marne
- May-en-Multien
- Ocquerre
- Le Plessis-Placy
- Puisieux
- Tancrou
- Trocy-en-Multien
- Vendrest
- Vincy-Manœuvre
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.
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.
This article is issued from Wikipedia. The text is licensed under Creative Commons - Attribution - Sharealike. Additional terms may apply for the media files.