Paramelita flexa
Paramelita flexa is a species of crustacean in family Paramelitidae. It is endemic to South Africa.
Paramelita flexa | |
---|---|
Scientific classification | |
Kingdom: | |
Phylum: | |
Subphylum: | |
Class: | |
Order: | |
Family: | |
Genus: | |
Species: | P. flexa |
Binomial name | |
Paramelita flexa Griffiths, 1981 | |
Sources
- Hamer, M. 1996. Paramelita flexa. 2006 IUCN Red List of Threatened Species. Downloaded on 10 August 2007.
gollark: Use of `lea` or something.
gollark: Apparently Zig can get some optimizations out of making all integer overflow UB.
gollark: (mod 2^128 or so)
gollark: Fibonaccae WILL be computed.
gollark: ```ruststruct Fib1 { cache: Vec<u128>}impl Iterator for Fib1 { type Item = u128; fn next(&mut self) -> Option<Self::Item> { let n = self.cache.len(); let next = self.cache[n - 1].wrapping_add(self.cache[n - 2]); self.cache.push(next); Some(next) }}fn fib1() -> Fib1 { Fib1 { cache: vec![0, 1] } }fn main() { for n in fib1() { print!("{} ", n); }}```
This article is issued from Wikipedia. The text is licensed under Creative Commons - Attribution - Sharealike. Additional terms may apply for the media files.