Cephetola izidori

Cephetola izidori is a butterfly in the family Lycaenidae. It is found in the Central African Republic, Kenya, Tanzania and Zambia.[2]

Cephetola izidori
Scientific classification
Kingdom:
Phylum:
Class:
Order:
Family:
Genus:
Species:
C. izidori
Binomial name
Cephetola izidori
(Kielland & Congdon, 1998)[1]
Synonyms
  • Epitola izidori Kielland & Congdon, 1998

Subspecies

  • Cephetola izidori izidori (Central African Republic, Kenya, north-western Tanzania)
  • Cephetola izidori zambeziae Libert & Collins, 1999 (Zambia)
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

  1. Cephetola at Markku Savela's Lepidoptera and some other life forms
  2. Williams, Mark C. "Subtribe Epitolina". Afrotropical Butterflies and Skippers. Archived from the original on 2018-06-27. Retrieved 2020-03-27.


This article is issued from Wikipedia. The text is licensed under Creative Commons - Attribution - Sharealike. Additional terms may apply for the media files.