Taeniotes scalatus

Taeniotes scalatus is a species of flat-faced longhorn beetle in the subfamily Lamiinae of the family Cerambycidae.[1]

Taeniotes scalatus
Museum specimen of Taeniotes scalatus
Scientific classification
Kingdom:
Phylum:
Class:
Order:
Suborder:
Superfamily:
Family:
Subfamily:
Genus:
Species:
T. scalatus
Binomial name
Taeniotes scalatus
(Gmelin, 1790)
Synonyms
  • Cerambyx scalaris Fabricius, 1781 nec Linnaeus, 1758
  • Cerambyx scalatus Gmelin, 1790
  • Taeniotes scalaris (Fabricius) Lacordaire, 1869
  • Taeniotes scalaris var. azoricus Kolbe, 1877
  • Taeniotes suturalis Thomson, 1857

Description

Taeniotes scalatus can reach a length of 30–40 millimetres (1.2–1.6 in). Basic color of body is black, with a yellow dorsal streak and small spots. Larval host plants are cultivated figs (Ficus carica), Artocarpus altilis, Artocarpus integrifolia, Brosimum utile, Castilloa elastica, Morus alba and Coffea arabica.[2] These nocturnal flat-faced longhorn beetles can be found all year round, especially from March to June.[3]

Distribution

This species is very common and widely distributed in Azores and in Nearctic ecozone, in Mexico, in Central America (Belize, Bolivia, Costa Rica, Colombia, Equator, Guatemala, Honduras, Nicaragua, Panama and Venezuela).[1][2][4][5][6]

Bibliography

  • Miguel A. Monné (2005): Catalogue of the Cerambycidae (Coleoptera) of the Neotropical Region. Part II. Subfamily Lamiinae
  • Tavakilian, G. and Chevillotte, H. (2012) Titan: base de données internationales sur les Cerambycidae ou Longicornes.
gollark: Oh, and it's not a special case as much as just annoying, but it's a compile error to not use a variable or import. Which I would find reasonable as a linter rule, but it makes quickly editing and testing bits of code more annoying.
gollark: As well as having special casing for stuff, it often is just pointlessly hostile to abstracting anything:- lol no generics- you literally cannot define a well-typed `min`/`max` function (like Lua has). Unless you do something weird like... implement an interface for that on all the builtin number types, and I don't know if it would let you do that.- no map/filter/reduce stuff- `if err != nil { return err }`- the recommended way to map over an array in parallel, if I remember right, is to run a goroutine for every element which does whatever task you want then adds the result to a shared "output" array, and use a WaitGroup thingy to wait for all the goroutines. This is a lot of boilerplate.
gollark: It also does have the whole "anything which implements the right functions implements an interface" thing, which seems very horrible to me as a random change somewhere could cause compile errors with no good explanation.
gollark: - `make`/`new` are basically magic- `range` is magic too - what it does depends on the number of return values you use, or something. Also, IIRC user-defined types can't implement it- Generics are available for all of, what, three builtin types? Maps, slices and channels, if I remember right.- `select` also only works with the built-in channels- Constants: they can only be something like four types, and what even is `iota` doing- The multiple return values can't be used as tuples or anything. You can, as far as I'm aware, only return two (or, well, more than one) things at once, or bind two returns to two variables, nothing else.- no operator overloading- it *kind of* has exceptions (panic/recover), presumably because they realized not having any would be very annoying, but they're not very usable- whether reading from a channel is blocking also depends how many return values you use because of course
gollark: What, you mean no it doesn't have weird special cases everywhere?

References


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