Skip to content
Surf Wiki
Save to docs
general/source-code

From Surf Wiki (app.surf) — the open knowledge base

Oxbow code

Unused program code


Unused program code

In computer programming, oxbow code refers to fragments of program code that were once needed but which are now never used. Such code is typically formed when a program is modified, either when an item is superseded with a newer version but the old version is not removed, or when an item is removed or replaced, but the item's supporting code is not removed.

Such code is normally removed unless sufficiently amusing or educational.

Similarly, variables and data structures can be left around after the last code that used them has been removed, though these are more commonly called unused or unreferenced variables.

The term is taken by analogy with oxbow lakes, which are formed in nature when a bend in a river becomes so pronounced that the water breaks through from before the bend to after it, making the river straight again. When the sides of the new course silt up, a curved lake is left, disconnected from the main stream.

Examples

Adapted from gnash/server/asobj/Global.cpp 1.46:

static void asGlobalEscape(const FnCall& fn) {
    // List of chars we must convert to escape sequences
    static constexpr string_view hexDigits = "0123456789ABCDEF";
    string input = fn.arg(0).to_string();
    URL::encode(strInput);
    fn.result->set_string(input.c_str());
}

In this, "hexDigits" is oxbow code (or oxbow data).

Info: Wikipedia Source

This article was imported from Wikipedia and is available under the Creative Commons Attribution-ShareAlike 4.0 License. Content has been adapted to SurfDoc format. Original contributors can be found on the article history page.

Want to explore this topic further?

Ask Mako anything about Oxbow code — get instant answers, deeper analysis, and related topics.

Research with Mako

Free with your Surf account

Content sourced from Wikipedia, available under CC BY-SA 4.0.

This content may have been generated or modified by AI. CloudSurf Software LLC is not responsible for the accuracy, completeness, or reliability of AI-generated content. Always verify important information from primary sources.

Report