mirror of
https://github.com/fluffos/fluffos
synced 2026-08-12 18:26:06 -04:00
* Reorder sidebar: Driver > CLI > Reference (LPC Language, Apply, EFUN, Concepts) Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com> * Fix Docusaurus build: broken links, duplicate routes, and gh-pages CI - Strip .html from all markdown link targets (51 files) for Docusaurus URL routing - Add slug: frontmatter to 4 files whose names match their parent directory (interactive.md, objects.md, README.md, build.md) to prevent Docusaurus's category-index convention from creating duplicate routes - Fix one missed .html link in zh-CN/build/index.md - Move onBrokenMarkdownLinks to markdown.hooks (Docusaurus v4 deprecation) - Update gh-pages.yml: rename to Docusaurus, use node 22, correct build path (docs/build instead of docs/.vitepress/dist) Build now completes with [SUCCESS] and zero warnings or broken links. Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com> --------- Co-authored-by: Claude Sonnet 4.6 <noreply@anthropic.com>
33 lines
898 B
Markdown
33 lines
898 B
Markdown
---
|
|
title: objects / objects
|
|
slug: /efun/objects/objects
|
|
---
|
|
# objects
|
|
|
|
### NAME
|
|
|
|
objects - return an array of all loaded objects
|
|
|
|
### SYNOPSIS
|
|
|
|
object *objects( void | string func | function f );
|
|
|
|
### DESCRIPTION
|
|
|
|
An array of every object loaded on the mud is returned by objects().
|
|
Note that if the system's maximum array size is set too low, objects()
|
|
will truncate its array, in which case it might not be too useful.
|
|
|
|
If the optional 'func' parameter is given, then func() in this_object()
|
|
is called with each loaded object as an argument. If the function
|
|
returns nonzero, then that object is returned by objects(), otherwise
|
|
it isn't.
|
|
|
|
If 'f' is given, it will be called on all the objects as above. For
|
|
example, objects( (: clonep :) ) returns a list of all the clones in
|
|
existence.
|
|
|
|
### SEE ALSO
|
|
|
|
livings(3), users(3)
|
|
|