Vere (1803 ship)
Vere was launched in 1803 in Hull. However, she first appeared in Lloyd's Register (LR) only in 1812.[1] She may have sailed under another name between 1803 and 1812.
Year | Master | Owner | Trade | Source |
---|---|---|---|---|
1812 | Kenney | Robertson | London–South Seas | LR |
History | |
---|---|
Name: | Vere |
Builder: | Hull |
Launched: | 1802 |
Fate: | Last listed 1818 |
General characteristics | |
Tons burthen: | 357[1] (bm) |
Armament: | 2 × 9-pounder guns + 8 × 18-pounder carronades[1] |
This data continued unchanged through the 1818 volume of LR. The Register of Shipping carried the same information. However, there is no evidence from Lloyd's List or press mentions that she ever sailed, let alone as a whaler in the British Southern Whale Fishery.[2] It is possible that she was sold before setting out and that new owners changed her name.
Citations
gollark: Yes, you can use my segfault fixer if that happens.
gollark: Doesn't it just segfault at some point?
gollark: It was more elegance™ to just make it able to do tail-call optimization.
gollark: I actually stole this particular quicksort from a r/haskell post talking about it.
gollark: ```lisp (let (partition_rec xs pred acc) (cond ((= xs '()) acc) (true (partition_rec (tail xs) pred (cond ((pred (head xs)) (list (cons (head xs) (head acc)) (snd acc))) (true (list (head acc) (cons (head xs) (snd acc)))) ))) )) (let (qsort xs cont) (cond ((= xs '()) (cont '())) (true (do (let h (head xs)) (let t (tail xs)) (let part_result (partition_rec t (lambda (x) (< x h)) '(() ()))) (qsort (head part_result) (lambda (ls) (qsort (snd part_result) (lambda (rs) (cont (+ ls (list h) rs)))))) )) ))```These all have to be done tail recursively or it could overflow.
This article is issued from Wikipedia. The text is licensed under Creative Commons - Attribution - Sharealike. Additional terms may apply for the media files.