Andreas Wagner (politician)
Andreas Wagner (born 16 April 1972) is a German politician. Born in Bad Tölz, Bavaria, he represents The Left. Andreas Wagner has served as a member of the Bundestag from the state of Bavaria since 2017.[1]
Andreas Wagner | |
---|---|
![]() Andreas Wagner in 2019 | |
Member of the Bundestag | |
Assumed office 2017 | |
Personal details | |
Born | Bad Tölz, West Germany (now Germany) | 16 April 1972
Nationality | German |
Political party | The Left |
Children | 3 |
Occupation | Toolmaker |
Life
Wagner completed secondary school and training as a toolmaker, later as a curative nurse. He became member of the bundestag after the 2017 German federal election.[2] He is a member of the Committee on Transport and Digital Infrastructure.[3]
gollark: Well, it's generic, obviously safer, and appears to involve less weird pointer meddling.
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?
References
- "Andreas Wagner | Abgeordnetenwatch". www.abgeordnetenwatch.de (in German). Retrieved 2020-03-18.
- Bundestag, Fraktion DIE LINKE im. "Profil". Fraktion DIE LINKE. im Bundestag (in German). Retrieved 2020-03-18.
- "German Bundestag - Transport and Digital Infrastructure". German Bundestag. Retrieved 2020-03-18.
External links
![]() |
Wikimedia Commons has media related to Andreas Wagner. |
- Bundestag biography (in English)
This article is issued from Wikipedia. The text is licensed under Creative Commons - Attribution - Sharealike. Additional terms may apply for the media files.