repo
stringlengths
6
65
file_url
stringlengths
81
311
file_path
stringlengths
6
227
content
stringlengths
0
32.8k
language
stringclasses
1 value
license
stringclasses
7 values
commit_sha
stringlengths
40
40
retrieved_at
stringdate
2026-01-04 15:31:58
2026-01-04 20:25:31
truncated
bool
2 classes
typst/typst
https://github.com/typst/typst/blob/a87f4b15ca86a0b2f98948d8f393608070ed731e/crates/typst-layout/src/pages/finalize.rs
crates/typst-layout/src/pages/finalize.rs
use typst_library::diag::SourceResult; use typst_library::engine::Engine; use typst_library::introspection::{ManualPageCounter, Tag}; use typst_library::layout::{Frame, FrameItem, Page, Point}; use super::LayoutedPage; /// Piece together the inner page frame and the marginals. We can only do this /// at the very end ...
rust
Apache-2.0
a87f4b15ca86a0b2f98948d8f393608070ed731e
2026-01-04T15:31:59.400510Z
false
typst/typst
https://github.com/typst/typst/blob/a87f4b15ca86a0b2f98948d8f393608070ed731e/crates/typst-layout/src/pages/mod.rs
crates/typst-layout/src/pages/mod.rs
//! Layout of content into a [`Document`]. mod collect; mod finalize; mod run; use std::num::NonZeroUsize; use comemo::{Tracked, TrackedMut}; use typst_library::World; use typst_library::diag::SourceResult; use typst_library::engine::{Engine, Route, Sink, Traced}; use typst_library::foundations::{Content, StyleChain...
rust
Apache-2.0
a87f4b15ca86a0b2f98948d8f393608070ed731e
2026-01-04T15:31:59.400510Z
false
typst/typst
https://github.com/typst/typst/blob/a87f4b15ca86a0b2f98948d8f393608070ed731e/crates/typst-layout/src/pages/run.rs
crates/typst-layout/src/pages/run.rs
use comemo::{Track, Tracked, TrackedMut}; use typst_library::World; use typst_library::diag::SourceResult; use typst_library::engine::{Engine, Route, Sink, Traced}; use typst_library::foundations::{ Content, NativeElement, Resolve, Smart, StyleChain, Styles, }; use typst_library::introspection::{ Counter, Count...
rust
Apache-2.0
a87f4b15ca86a0b2f98948d8f393608070ed731e
2026-01-04T15:31:59.400510Z
false
typst/typst
https://github.com/typst/typst/blob/a87f4b15ca86a0b2f98948d8f393608070ed731e/crates/typst-layout/src/inline/box.rs
crates/typst-layout/src/inline/box.rs
use std::cell::LazyCell; use typst_library::diag::SourceResult; use typst_library::engine::Engine; use typst_library::foundations::{Packed, StyleChain}; use typst_library::introspection::Locator; use typst_library::layout::{BoxElem, Frame, FrameKind, Size}; use typst_library::visualize::Stroke; use typst_utils::Numeri...
rust
Apache-2.0
a87f4b15ca86a0b2f98948d8f393608070ed731e
2026-01-04T15:31:59.400510Z
false
typst/typst
https://github.com/typst/typst/blob/a87f4b15ca86a0b2f98948d8f393608070ed731e/crates/typst-layout/src/inline/collect.rs
crates/typst-layout/src/inline/collect.rs
use typst_library::diag::warning; use typst_library::foundations::{Packed, Resolve}; use typst_library::introspection::{SplitLocator, Tag, TagElem}; use typst_library::layout::{ Abs, BoxElem, Dir, Fr, Frame, HElem, InlineElem, InlineItem, Sizing, Spacing, }; use typst_library::routines::Pair; use typst_library::tex...
rust
Apache-2.0
a87f4b15ca86a0b2f98948d8f393608070ed731e
2026-01-04T15:31:59.400510Z
false
typst/typst
https://github.com/typst/typst/blob/a87f4b15ca86a0b2f98948d8f393608070ed731e/crates/typst-layout/src/inline/shaping.rs
crates/typst-layout/src/inline/shaping.rs
use std::borrow::Cow; use std::fmt::{self, Debug, Formatter}; use std::ops::Deref; use std::sync::Arc; use az::SaturatingAs; use comemo::Tracked; use rustybuzz::{BufferFlags, Feature, ShapePlan, UnicodeBuffer}; use ttf_parser::Tag; use ttf_parser::gsub::SubstitutionSubtable; use typst_library::World; use typst_library...
rust
Apache-2.0
a87f4b15ca86a0b2f98948d8f393608070ed731e
2026-01-04T15:31:59.400510Z
true
typst/typst
https://github.com/typst/typst/blob/a87f4b15ca86a0b2f98948d8f393608070ed731e/crates/typst-layout/src/inline/finalize.rs
crates/typst-layout/src/inline/finalize.rs
use typst_library::introspection::SplitLocator; use typst_utils::Numeric; use super::*; /// Turns the selected lines into frames. #[typst_macros::time] pub fn finalize( engine: &mut Engine, p: &Preparation, lines: &[Line], region: Size, expand: bool, locator: &mut SplitLocator<'_>, ) -> Source...
rust
Apache-2.0
a87f4b15ca86a0b2f98948d8f393608070ed731e
2026-01-04T15:31:59.400510Z
false
typst/typst
https://github.com/typst/typst/blob/a87f4b15ca86a0b2f98948d8f393608070ed731e/crates/typst-layout/src/inline/linebreak.rs
crates/typst-layout/src/inline/linebreak.rs
use std::ops::{Add, Sub}; use std::sync::LazyLock; use az::SaturatingAs; use icu_properties::LineBreak; use icu_properties::maps::{CodePointMapData, CodePointMapDataBorrowed}; use icu_provider::AsDeserializingBufferProvider; use icu_provider_adapters::fork::ForkByKeyProvider; use icu_provider_blob::BlobDataProvider; u...
rust
Apache-2.0
a87f4b15ca86a0b2f98948d8f393608070ed731e
2026-01-04T15:31:59.400510Z
true
typst/typst
https://github.com/typst/typst/blob/a87f4b15ca86a0b2f98948d8f393608070ed731e/crates/typst-layout/src/inline/mod.rs
crates/typst-layout/src/inline/mod.rs
#[path = "box.rs"] mod box_; mod collect; mod deco; mod finalize; mod line; mod linebreak; mod prepare; mod shaping; pub use self::box_::layout_box; pub use self::shaping::{SharedShapingContext, create_shape_plan, get_font_and_covers}; use comemo::{Track, Tracked, TrackedMut}; use typst_library::World; use typst_libr...
rust
Apache-2.0
a87f4b15ca86a0b2f98948d8f393608070ed731e
2026-01-04T15:31:59.400510Z
false
typst/typst
https://github.com/typst/typst/blob/a87f4b15ca86a0b2f98948d8f393608070ed731e/crates/typst-layout/src/inline/line.rs
crates/typst-layout/src/inline/line.rs
use std::fmt::{self, Debug, Formatter}; use std::ops::{Deref, DerefMut}; use typst_library::engine::Engine; use typst_library::foundations::Resolve; use typst_library::introspection::{SplitLocator, Tag, TagFlags}; use typst_library::layout::{Abs, Dir, Em, Fr, Frame, FrameItem, Point}; use typst_library::model::ParLine...
rust
Apache-2.0
a87f4b15ca86a0b2f98948d8f393608070ed731e
2026-01-04T15:31:59.400510Z
false
typst/typst
https://github.com/typst/typst/blob/a87f4b15ca86a0b2f98948d8f393608070ed731e/crates/typst-layout/src/inline/prepare.rs
crates/typst-layout/src/inline/prepare.rs
use either::Either; use typst_library::layout::{Dir, Em}; use typst_library::text::TextElem; use unicode_bidi::{BidiInfo, Level as BidiLevel}; use super::*; /// A representation in which children are already layouted and text is already /// preshaped. /// /// In many cases, we can directly reuse these results when co...
rust
Apache-2.0
a87f4b15ca86a0b2f98948d8f393608070ed731e
2026-01-04T15:31:59.400510Z
false
typst/typst
https://github.com/typst/typst/blob/a87f4b15ca86a0b2f98948d8f393608070ed731e/crates/typst-layout/src/inline/deco.rs
crates/typst-layout/src/inline/deco.rs
use kurbo::{BezPath, Line, ParamCurve}; use ttf_parser::{GlyphId, OutlineBuilder}; use typst_library::layout::{Abs, Em, Frame, FrameItem, Point, Size}; use typst_library::text::{ BottomEdge, DecoLine, Decoration, TextEdgeBounds, TextItem, TopEdge, }; use typst_library::visualize::{FixedStroke, Geometry}; use typst_...
rust
Apache-2.0
a87f4b15ca86a0b2f98948d8f393608070ed731e
2026-01-04T15:31:59.400510Z
false
typst/typst
https://github.com/typst/typst/blob/a87f4b15ca86a0b2f98948d8f393608070ed731e/crates/typst-layout/src/grid/rowspans.rs
crates/typst-layout/src/grid/rowspans.rs
use typst_library::diag::SourceResult; use typst_library::engine::Engine; use typst_library::foundations::Resolve; use typst_library::layout::grid::resolve::Repeatable; use typst_library::layout::{Abs, Axes, Frame, Point, Region, Regions, Size, Sizing}; use super::layouter::{Row, points}; use super::{Cell, GridLayoute...
rust
Apache-2.0
a87f4b15ca86a0b2f98948d8f393608070ed731e
2026-01-04T15:31:59.400510Z
true
typst/typst
https://github.com/typst/typst/blob/a87f4b15ca86a0b2f98948d8f393608070ed731e/crates/typst-layout/src/grid/mod.rs
crates/typst-layout/src/grid/mod.rs
mod layouter; mod lines; mod repeated; mod rowspans; pub use self::layouter::GridLayouter; use typst_library::diag::SourceResult; use typst_library::engine::Engine; use typst_library::foundations::{Content, NativeElement, Packed, StyleChain}; use typst_library::introspection::{Location, Locator, SplitLocator, Tag, Ta...
rust
Apache-2.0
a87f4b15ca86a0b2f98948d8f393608070ed731e
2026-01-04T15:31:59.400510Z
false
typst/typst
https://github.com/typst/typst/blob/a87f4b15ca86a0b2f98948d8f393608070ed731e/crates/typst-layout/src/grid/layouter.rs
crates/typst-layout/src/grid/layouter.rs
use std::fmt::Debug; use rustc_hash::FxHashMap; use typst_library::diag::{SourceResult, bail}; use typst_library::engine::Engine; use typst_library::foundations::{Resolve, StyleChain}; use typst_library::introspection::Locator; use typst_library::layout::grid::resolve::{ Cell, CellGrid, Header, LinePosition, Repea...
rust
Apache-2.0
a87f4b15ca86a0b2f98948d8f393608070ed731e
2026-01-04T15:31:59.400510Z
true
typst/typst
https://github.com/typst/typst/blob/a87f4b15ca86a0b2f98948d8f393608070ed731e/crates/typst-layout/src/grid/lines.rs
crates/typst-layout/src/grid/lines.rs
use std::sync::Arc; use typst_library::foundations::{AlternativeFold, Fold}; use typst_library::layout::Abs; use typst_library::layout::grid::resolve::{CellGrid, Line, Repeatable}; use typst_library::visualize::Stroke; use super::RowPiece; /// Indicates which priority a particular grid line segment should have, base...
rust
Apache-2.0
a87f4b15ca86a0b2f98948d8f393608070ed731e
2026-01-04T15:31:59.400510Z
true
typst/typst
https://github.com/typst/typst/blob/a87f4b15ca86a0b2f98948d8f393608070ed731e/crates/typst-layout/src/grid/repeated.rs
crates/typst-layout/src/grid/repeated.rs
use std::ops::Deref; use typst_library::diag::SourceResult; use typst_library::engine::Engine; use typst_library::layout::grid::resolve::{Footer, Header, Repeatable}; use typst_library::layout::{Abs, Axes, Frame, Regions}; use super::layouter::{GridLayouter, RowState}; use super::rowspans::UnbreakableRowGroup; impl<...
rust
Apache-2.0
a87f4b15ca86a0b2f98948d8f393608070ed731e
2026-01-04T15:31:59.400510Z
false
typst/typst
https://github.com/typst/typst/blob/a87f4b15ca86a0b2f98948d8f393608070ed731e/crates/typst-library/src/engine.rs
crates/typst-library/src/engine.rs
//! Definition of the central compilation context. use std::sync::atomic::{AtomicUsize, Ordering}; use comemo::{Track, Tracked, TrackedMut}; use ecow::EcoVec; use rayon::iter::{IndexedParallelIterator, IntoParallelIterator, ParallelIterator}; use rustc_hash::FxHashSet; use typst_syntax::{FileId, Span}; use typst_util...
rust
Apache-2.0
a87f4b15ca86a0b2f98948d8f393608070ed731e
2026-01-04T15:31:59.400510Z
false
typst/typst
https://github.com/typst/typst/blob/a87f4b15ca86a0b2f98948d8f393608070ed731e/crates/typst-library/src/lib.rs
crates/typst-library/src/lib.rs
//! Typst's standard library. //! //! This crate also contains all of the compiler's central type definitions as //! these are interwoven with the standard library types. //! //! In contrast to the _types,_ most of the compilation _behaviour_ is split out //! into separate crates (`typst-eval`, `typst-realize`, `typst-...
rust
Apache-2.0
a87f4b15ca86a0b2f98948d8f393608070ed731e
2026-01-04T15:31:59.400510Z
false
typst/typst
https://github.com/typst/typst/blob/a87f4b15ca86a0b2f98948d8f393608070ed731e/crates/typst-library/src/routines.rs
crates/typst-library/src/routines.rs
use std::fmt::{self, Debug, Formatter}; use std::hash::{Hash, Hasher}; use comemo::{Tracked, TrackedMut}; use typst_syntax::{Span, SyntaxMode}; use typst_utils::LazyHash; use crate::World; use crate::diag::SourceResult; use crate::engine::{Engine, Route, Sink, Traced}; use crate::foundations::{ Args, Closure, Con...
rust
Apache-2.0
a87f4b15ca86a0b2f98948d8f393608070ed731e
2026-01-04T15:31:59.400510Z
false
typst/typst
https://github.com/typst/typst/blob/a87f4b15ca86a0b2f98948d8f393608070ed731e/crates/typst-library/src/symbols.rs
crates/typst-library/src/symbols.rs
//! Modifiable symbols. use crate::foundations::{Deprecation, Module, Scope, Symbol, Value}; /// Hook up all `symbol` definitions. pub(super) fn define(global: &mut Scope) { global.start_category(crate::Category::Symbols); extend_scope_from_codex_module(global, codex::ROOT); global.reset_category(); } //...
rust
Apache-2.0
a87f4b15ca86a0b2f98948d8f393608070ed731e
2026-01-04T15:31:59.400510Z
false
typst/typst
https://github.com/typst/typst/blob/a87f4b15ca86a0b2f98948d8f393608070ed731e/crates/typst-library/src/diag.rs
crates/typst-library/src/diag.rs
//! Diagnostics. use std::backtrace::{Backtrace, BacktraceStatus}; use std::fmt::{self, Display, Formatter, Write as _}; use std::io; use std::path::{Path, PathBuf}; use std::str::Utf8Error; use std::string::FromUtf8Error; use az::SaturatingAs; use comemo::Tracked; use ecow::{EcoVec, eco_vec}; use typst_syntax::packa...
rust
Apache-2.0
a87f4b15ca86a0b2f98948d8f393608070ed731e
2026-01-04T15:31:59.400510Z
false
typst/typst
https://github.com/typst/typst/blob/a87f4b15ca86a0b2f98948d8f393608070ed731e/crates/typst-library/src/pdf/mod.rs
crates/typst-library/src/pdf/mod.rs
//! PDF-specific functionality. mod accessibility; mod attach; pub use self::accessibility::*; pub use self::attach::*; use crate::foundations::{Deprecation, Element, Module, Scope}; use crate::{Feature, Features}; /// Hook up all `pdf` definitions. pub fn module(features: &Features) -> Module { let mut pdf = S...
rust
Apache-2.0
a87f4b15ca86a0b2f98948d8f393608070ed731e
2026-01-04T15:31:59.400510Z
false
typst/typst
https://github.com/typst/typst/blob/a87f4b15ca86a0b2f98948d8f393608070ed731e/crates/typst-library/src/pdf/accessibility.rs
crates/typst-library/src/pdf/accessibility.rs
use std::num::NonZeroU32; use ecow::EcoString; use typst_macros::{Cast, elem, func}; use typst_utils::NonZeroExt; use crate::diag::SourceResult; use crate::diag::bail; use crate::engine::Engine; use crate::foundations::{Args, Construct, Content, NativeElement, Smart}; use crate::introspection::Tagged; use crate::mode...
rust
Apache-2.0
a87f4b15ca86a0b2f98948d8f393608070ed731e
2026-01-04T15:31:59.400510Z
false
typst/typst
https://github.com/typst/typst/blob/a87f4b15ca86a0b2f98948d8f393608070ed731e/crates/typst-library/src/pdf/attach.rs
crates/typst-library/src/pdf/attach.rs
use ecow::EcoString; use typst_syntax::Spanned; use crate::World; use crate::diag::At; use crate::foundations::{Bytes, Cast, Derived, elem}; use crate::introspection::Locatable; /// A file that will be attached to the output PDF. /// /// This can be used to distribute additional files associated with the PDF /// with...
rust
Apache-2.0
a87f4b15ca86a0b2f98948d8f393608070ed731e
2026-01-04T15:31:59.400510Z
false
typst/typst
https://github.com/typst/typst/blob/a87f4b15ca86a0b2f98948d8f393608070ed731e/crates/typst-library/src/foundations/none.rs
crates/typst-library/src/foundations/none.rs
use std::fmt::{self, Debug, Formatter}; use ecow::EcoString; use serde::{Serialize, Serializer}; use crate::diag::HintedStrResult; use crate::foundations::{ CastInfo, FromValue, IntoValue, Reflect, Repr, Type, Value, cast, ty, }; /// A value that indicates the absence of any other value. /// /// The none type ha...
rust
Apache-2.0
a87f4b15ca86a0b2f98948d8f393608070ed731e
2026-01-04T15:31:59.400510Z
false
typst/typst
https://github.com/typst/typst/blob/a87f4b15ca86a0b2f98948d8f393608070ed731e/crates/typst-library/src/foundations/array.rs
crates/typst-library/src/foundations/array.rs
use std::cmp::Ordering; use std::fmt::{Debug, Formatter}; use std::num::{NonZeroI64, NonZeroUsize}; use std::ops::{Add, AddAssign}; use comemo::Tracked; use ecow::{EcoString, EcoVec, eco_format}; use serde::{Deserialize, Serialize}; use smallvec::SmallVec; use typst_syntax::{Span, Spanned}; use crate::diag::{ At,...
rust
Apache-2.0
a87f4b15ca86a0b2f98948d8f393608070ed731e
2026-01-04T15:31:59.400510Z
true
typst/typst
https://github.com/typst/typst/blob/a87f4b15ca86a0b2f98948d8f393608070ed731e/crates/typst-library/src/foundations/func.rs
crates/typst-library/src/foundations/func.rs
#[doc(inline)] pub use typst_macros::func; use std::fmt::{self, Debug, Formatter}; use std::sync::{Arc, LazyLock}; use comemo::{Tracked, TrackedMut}; use ecow::{EcoString, eco_format}; use typst_syntax::{Span, SyntaxNode, ast}; use typst_utils::{LazyHash, Static, singleton}; use crate::diag::{At, DeprecationSink, So...
rust
Apache-2.0
a87f4b15ca86a0b2f98948d8f393608070ed731e
2026-01-04T15:31:59.400510Z
false
typst/typst
https://github.com/typst/typst/blob/a87f4b15ca86a0b2f98948d8f393608070ed731e/crates/typst-library/src/foundations/bytes.rs
crates/typst-library/src/foundations/bytes.rs
use std::any::Any; use std::fmt::{self, Debug, Formatter}; use std::hash::{Hash, Hasher}; use std::ops::{Add, AddAssign, Deref}; use std::str::Utf8Error; use std::sync::Arc; use ecow::{EcoString, eco_format}; use serde::{Serialize, Serializer}; use typst_syntax::Lines; use typst_utils::LazyHash; use crate::diag::{Str...
rust
Apache-2.0
a87f4b15ca86a0b2f98948d8f393608070ed731e
2026-01-04T15:31:59.400510Z
false
typst/typst
https://github.com/typst/typst/blob/a87f4b15ca86a0b2f98948d8f393608070ed731e/crates/typst-library/src/foundations/version.rs
crates/typst-library/src/foundations/version.rs
use std::cmp::Ordering; use std::fmt::{self, Display, Formatter, Write}; use std::hash::Hash; use std::iter::repeat; use ecow::{EcoString, EcoVec, eco_format}; use crate::diag::{StrResult, bail}; use crate::foundations::{Repr, cast, func, repr, scope, ty}; /// A version with an arbitrary number of components. /// //...
rust
Apache-2.0
a87f4b15ca86a0b2f98948d8f393608070ed731e
2026-01-04T15:31:59.400510Z
false
typst/typst
https://github.com/typst/typst/blob/a87f4b15ca86a0b2f98948d8f393608070ed731e/crates/typst-library/src/foundations/calc.rs
crates/typst-library/src/foundations/calc.rs
//! Calculations and processing of numeric values. use std::cmp; use std::cmp::Ordering; use az::SaturatingAs; use typst_syntax::{Span, Spanned}; use typst_utils::{round_int_with_precision, round_with_precision}; use crate::diag::{At, HintedString, SourceResult, StrResult, bail}; use crate::foundations::{Decimal, In...
rust
Apache-2.0
a87f4b15ca86a0b2f98948d8f393608070ed731e
2026-01-04T15:31:59.400510Z
true
typst/typst
https://github.com/typst/typst/blob/a87f4b15ca86a0b2f98948d8f393608070ed731e/crates/typst-library/src/foundations/datetime.rs
crates/typst-library/src/foundations/datetime.rs
use std::cmp::Ordering; use std::hash::Hash; use std::ops::{Add, Sub}; use arrayvec::ArrayVec; use ecow::{EcoString, EcoVec, eco_format}; use time::error::{Format, InvalidFormatDescription}; use time::macros::format_description; use time::{Month, PrimitiveDateTime, format_description}; use crate::World; use crate::di...
rust
Apache-2.0
a87f4b15ca86a0b2f98948d8f393608070ed731e
2026-01-04T15:31:59.400510Z
false
typst/typst
https://github.com/typst/typst/blob/a87f4b15ca86a0b2f98948d8f393608070ed731e/crates/typst-library/src/foundations/module.rs
crates/typst-library/src/foundations/module.rs
use std::fmt::{self, Debug, Formatter}; use std::sync::Arc; use ecow::{EcoString, eco_format}; use typst_syntax::FileId; use crate::diag::{DeprecationSink, StrResult, bail}; use crate::foundations::{Content, Repr, Scope, Value, ty}; /// A collection of variables and functions that are commonly related to /// a singl...
rust
Apache-2.0
a87f4b15ca86a0b2f98948d8f393608070ed731e
2026-01-04T15:31:59.400510Z
false
typst/typst
https://github.com/typst/typst/blob/a87f4b15ca86a0b2f98948d8f393608070ed731e/crates/typst-library/src/foundations/styles.rs
crates/typst-library/src/foundations/styles.rs
use std::any::{Any, TypeId}; use std::fmt::{self, Debug, Formatter}; use std::hash::{Hash, Hasher}; use std::{mem, ptr}; use comemo::Tracked; use ecow::{EcoString, EcoVec, eco_vec}; use rustc_hash::FxHashMap; use smallvec::SmallVec; use typst_syntax::Span; use typst_utils::LazyHash; use crate::diag::{SourceResult, Tr...
rust
Apache-2.0
a87f4b15ca86a0b2f98948d8f393608070ed731e
2026-01-04T15:31:59.400510Z
true
typst/typst
https://github.com/typst/typst/blob/a87f4b15ca86a0b2f98948d8f393608070ed731e/crates/typst-library/src/foundations/value.rs
crates/typst-library/src/foundations/value.rs
use std::any::{Any, TypeId}; use std::cmp::Ordering; use std::fmt::{self, Debug, Formatter}; use std::hash::{Hash, Hasher}; use std::sync::Arc; use ecow::{EcoString, eco_format}; use serde::de::value::{MapAccessDeserializer, SeqAccessDeserializer}; use serde::de::{Error, MapAccess, SeqAccess, Visitor}; use serde::{Des...
rust
Apache-2.0
a87f4b15ca86a0b2f98948d8f393608070ed731e
2026-01-04T15:31:59.400510Z
false
typst/typst
https://github.com/typst/typst/blob/a87f4b15ca86a0b2f98948d8f393608070ed731e/crates/typst-library/src/foundations/args.rs
crates/typst-library/src/foundations/args.rs
use std::fmt::{self, Debug, Formatter}; use std::ops::Add; use std::slice; use comemo::Tracked; use ecow::{EcoString, EcoVec, eco_format, eco_vec}; use typst_syntax::{Span, Spanned}; use crate::diag::{At, SourceDiagnostic, SourceResult, StrResult, bail, error}; use crate::engine::Engine; use crate::foundations::{ ...
rust
Apache-2.0
a87f4b15ca86a0b2f98948d8f393608070ed731e
2026-01-04T15:31:59.400510Z
false
typst/typst
https://github.com/typst/typst/blob/a87f4b15ca86a0b2f98948d8f393608070ed731e/crates/typst-library/src/foundations/decimal.rs
crates/typst-library/src/foundations/decimal.rs
use std::fmt::{self, Display, Formatter}; use std::hash::{Hash, Hasher}; use std::ops::Neg; use std::str::FromStr; use ecow::{EcoString, eco_format}; use rust_decimal::MathematicalOps; use typst_syntax::{Span, Spanned, ast}; use crate::World; use crate::diag::{At, SourceResult, warning}; use crate::engine::Engine; us...
rust
Apache-2.0
a87f4b15ca86a0b2f98948d8f393608070ed731e
2026-01-04T15:31:59.400510Z
false
typst/typst
https://github.com/typst/typst/blob/a87f4b15ca86a0b2f98948d8f393608070ed731e/crates/typst-library/src/foundations/target.rs
crates/typst-library/src/foundations/target.rs
use comemo::Tracked; use crate::diag::HintedStrResult; use crate::foundations::{Cast, Context, elem, func}; /// The export target. #[derive(Debug, Default, Copy, Clone, Eq, PartialEq, Hash, Cast)] pub enum Target { /// The target that is used for paged, fully laid-out content. #[default] Paged, /// Th...
rust
Apache-2.0
a87f4b15ca86a0b2f98948d8f393608070ed731e
2026-01-04T15:31:59.400510Z
false
typst/typst
https://github.com/typst/typst/blob/a87f4b15ca86a0b2f98948d8f393608070ed731e/crates/typst-library/src/foundations/bool.rs
crates/typst-library/src/foundations/bool.rs
use ecow::EcoString; use crate::foundations::{Repr, ty}; /// A type with two states. /// /// The boolean type has two values: `{true}` and `{false}`. It denotes whether /// something is active or enabled. /// /// # Example /// ```example /// #false \ /// #true \ /// #(1 < 2) /// ``` #[ty(cast, title = "Boolean")] typ...
rust
Apache-2.0
a87f4b15ca86a0b2f98948d8f393608070ed731e
2026-01-04T15:31:59.400510Z
false
typst/typst
https://github.com/typst/typst/blob/a87f4b15ca86a0b2f98948d8f393608070ed731e/crates/typst-library/src/foundations/fields.rs
crates/typst-library/src/foundations/fields.rs
//! Fields on values. use ecow::{EcoString, eco_format}; use crate::diag::StrResult; use crate::foundations::{IntoValue, Type, Value, Version}; use crate::layout::{Alignment, Length, Rel}; use crate::visualize::Stroke; /// Try to access a field on a value. /// /// This function is exclusively for types which have pr...
rust
Apache-2.0
a87f4b15ca86a0b2f98948d8f393608070ed731e
2026-01-04T15:31:59.400510Z
false
typst/typst
https://github.com/typst/typst/blob/a87f4b15ca86a0b2f98948d8f393608070ed731e/crates/typst-library/src/foundations/scope.rs
crates/typst-library/src/foundations/scope.rs
use std::fmt::{self, Debug, Formatter}; use std::hash::{Hash, Hasher}; use ecow::{EcoString, eco_format}; use indexmap::IndexMap; use indexmap::map::Entry; use rustc_hash::FxBuildHasher; use typst_syntax::Span; use crate::diag::{DeprecationSink, HintedStrResult, HintedString, StrResult, bail}; use crate::foundations:...
rust
Apache-2.0
a87f4b15ca86a0b2f98948d8f393608070ed731e
2026-01-04T15:31:59.400510Z
false
typst/typst
https://github.com/typst/typst/blob/a87f4b15ca86a0b2f98948d8f393608070ed731e/crates/typst-library/src/foundations/mod.rs
crates/typst-library/src/foundations/mod.rs
//! Foundational types and functions. pub mod calc; pub mod ops; pub mod repr; pub mod sys; mod args; mod array; mod auto; mod bool; mod bytes; mod cast; mod content; mod context; mod datetime; mod decimal; mod dict; mod duration; mod fields; mod float; mod func; mod int; mod label; mod module; mod none; #[path = "pl...
rust
Apache-2.0
a87f4b15ca86a0b2f98948d8f393608070ed731e
2026-01-04T15:31:59.400510Z
false
typst/typst
https://github.com/typst/typst/blob/a87f4b15ca86a0b2f98948d8f393608070ed731e/crates/typst-library/src/foundations/float.rs
crates/typst-library/src/foundations/float.rs
use std::num::ParseFloatError; use ecow::{EcoString, eco_format}; use crate::diag::{StrResult, bail}; use crate::foundations::{ Bytes, Decimal, Endianness, Repr, Str, cast, func, repr, scope, ty, }; use crate::layout::Ratio; /// A floating-point number. /// /// A limited-precision representation of a real number...
rust
Apache-2.0
a87f4b15ca86a0b2f98948d8f393608070ed731e
2026-01-04T15:31:59.400510Z
false
typst/typst
https://github.com/typst/typst/blob/a87f4b15ca86a0b2f98948d8f393608070ed731e/crates/typst-library/src/foundations/cast.rs
crates/typst-library/src/foundations/cast.rs
#[rustfmt::skip] #[doc(inline)] pub use typst_macros::{cast, Cast}; use std::borrow::Cow; use std::fmt::Write; use std::hash::Hash; use std::ops::Add; use ecow::eco_format; use smallvec::SmallVec; use typst_syntax::{Span, Spanned, SyntaxMode}; use unicode_math_class::MathClass; use crate::diag::{At, HintedStrResult,...
rust
Apache-2.0
a87f4b15ca86a0b2f98948d8f393608070ed731e
2026-01-04T15:31:59.400510Z
false
typst/typst
https://github.com/typst/typst/blob/a87f4b15ca86a0b2f98948d8f393608070ed731e/crates/typst-library/src/foundations/ty.rs
crates/typst-library/src/foundations/ty.rs
#[doc(inline)] pub use typst_macros::{scope, ty}; use std::cmp::Ordering; use std::fmt::{self, Debug, Display, Formatter}; use std::sync::LazyLock; use ecow::{EcoString, eco_format}; use typst_utils::Static; use crate::diag::{DeprecationSink, StrResult, bail}; use crate::foundations::{ AutoValue, Func, NativeFun...
rust
Apache-2.0
a87f4b15ca86a0b2f98948d8f393608070ed731e
2026-01-04T15:31:59.400510Z
false
typst/typst
https://github.com/typst/typst/blob/a87f4b15ca86a0b2f98948d8f393608070ed731e/crates/typst-library/src/foundations/auto.rs
crates/typst-library/src/foundations/auto.rs
use std::fmt::{self, Debug, Formatter}; use ecow::EcoString; use crate::diag::HintedStrResult; use crate::foundations::{ CastInfo, Fold, FromValue, IntoValue, Reflect, Repr, Resolve, StyleChain, Type, Value, ty, }; /// A value that indicates a smart default. /// /// The auto type has exactly one value: `{aut...
rust
Apache-2.0
a87f4b15ca86a0b2f98948d8f393608070ed731e
2026-01-04T15:31:59.400510Z
false
typst/typst
https://github.com/typst/typst/blob/a87f4b15ca86a0b2f98948d8f393608070ed731e/crates/typst-library/src/foundations/int.rs
crates/typst-library/src/foundations/int.rs
use std::num::{ IntErrorKind, NonZeroI64, NonZeroIsize, NonZeroU32, NonZeroU64, NonZeroUsize, }; use ecow::{EcoString, eco_format}; use smallvec::SmallVec; use typst_syntax::{Span, Spanned}; use crate::diag::{At, HintedString, SourceResult, StrResult, bail, error}; use crate::foundations::{ Base, Bytes, Cast,...
rust
Apache-2.0
a87f4b15ca86a0b2f98948d8f393608070ed731e
2026-01-04T15:31:59.400510Z
false
typst/typst
https://github.com/typst/typst/blob/a87f4b15ca86a0b2f98948d8f393608070ed731e/crates/typst-library/src/foundations/repr.rs
crates/typst-library/src/foundations/repr.rs
//! Debug representation of values. use ecow::{EcoString, eco_format}; use typst_utils::round_with_precision; use crate::foundations::{Str, Value, func}; /// The Unicode minus sign. pub const MINUS_SIGN: &str = "\u{2212}"; /// Returns the string representation of a value. /// /// When inserted into content, most va...
rust
Apache-2.0
a87f4b15ca86a0b2f98948d8f393608070ed731e
2026-01-04T15:31:59.400510Z
false
typst/typst
https://github.com/typst/typst/blob/a87f4b15ca86a0b2f98948d8f393608070ed731e/crates/typst-library/src/foundations/label.rs
crates/typst-library/src/foundations/label.rs
use ecow::{EcoString, eco_format}; use typst_utils::{PicoStr, ResolvedPicoStr}; use crate::diag::StrResult; use crate::foundations::{Repr, Str, bail, func, scope, ty}; /// A label for an element. /// /// Inserting a label into content attaches it to the closest preceding element /// that is not a space. The preceding...
rust
Apache-2.0
a87f4b15ca86a0b2f98948d8f393608070ed731e
2026-01-04T15:31:59.400510Z
false
typst/typst
https://github.com/typst/typst/blob/a87f4b15ca86a0b2f98948d8f393608070ed731e/crates/typst-library/src/foundations/selector.rs
crates/typst-library/src/foundations/selector.rs
use std::any::{Any, TypeId}; use std::sync::Arc; use comemo::Tracked; use ecow::{EcoString, EcoVec, eco_format}; use smallvec::SmallVec; use typst_syntax::Span; use crate::diag::{At, HintedStrResult, SourceResult, StrResult, bail}; use crate::engine::Engine; use crate::foundations::{ CastInfo, Content, Context, D...
rust
Apache-2.0
a87f4b15ca86a0b2f98948d8f393608070ed731e
2026-01-04T15:31:59.400510Z
false
typst/typst
https://github.com/typst/typst/blob/a87f4b15ca86a0b2f98948d8f393608070ed731e/crates/typst-library/src/foundations/context.rs
crates/typst-library/src/foundations/context.rs
use comemo::Track; use crate::diag::{Hint, HintedStrResult, SourceResult, bail}; use crate::engine::Engine; use crate::foundations::{ Args, Construct, Content, Func, ShowFn, StyleChain, Value, elem, }; use crate::introspection::{Locatable, Location}; /// Data that is contextually made available to code. /// /// _...
rust
Apache-2.0
a87f4b15ca86a0b2f98948d8f393608070ed731e
2026-01-04T15:31:59.400510Z
false
typst/typst
https://github.com/typst/typst/blob/a87f4b15ca86a0b2f98948d8f393608070ed731e/crates/typst-library/src/foundations/ops.rs
crates/typst-library/src/foundations/ops.rs
//! Operations on values. use std::cmp::Ordering; use ecow::eco_format; use typst_utils::Numeric; use crate::diag::{HintedStrResult, StrResult, bail}; use crate::foundations::{ Datetime, IntoValue, Regex, Repr, SymbolElem, Value, format_str, }; use crate::layout::{Alignment, Length, Rel}; use crate::text::TextEl...
rust
Apache-2.0
a87f4b15ca86a0b2f98948d8f393608070ed731e
2026-01-04T15:31:59.400510Z
false
typst/typst
https://github.com/typst/typst/blob/a87f4b15ca86a0b2f98948d8f393608070ed731e/crates/typst-library/src/foundations/sys.rs
crates/typst-library/src/foundations/sys.rs
//! System-related things. use crate::foundations::{Dict, Module, Scope, Version}; /// A module with system-related things. pub fn module(inputs: Dict) -> Module { let typst_version = typst_utils::version(); let version = Version::from_iter([ typst_version.major(), typst_version.minor(), ...
rust
Apache-2.0
a87f4b15ca86a0b2f98948d8f393608070ed731e
2026-01-04T15:31:59.400510Z
false
typst/typst
https://github.com/typst/typst/blob/a87f4b15ca86a0b2f98948d8f393608070ed731e/crates/typst-library/src/foundations/symbol.rs
crates/typst-library/src/foundations/symbol.rs
use std::collections::BTreeSet; use std::fmt::{self, Debug, Display, Formatter}; use std::sync::Arc; use codex::ModifierSet; use ecow::{EcoString, eco_format}; use rustc_hash::FxHashMap; use serde::{Serialize, Serializer}; use typst_syntax::{Span, Spanned, is_ident}; use typst_utils::hash128; use unicode_segmentation:...
rust
Apache-2.0
a87f4b15ca86a0b2f98948d8f393608070ed731e
2026-01-04T15:31:59.400510Z
false
typst/typst
https://github.com/typst/typst/blob/a87f4b15ca86a0b2f98948d8f393608070ed731e/crates/typst-library/src/foundations/str.rs
crates/typst-library/src/foundations/str.rs
use std::borrow::{Borrow, Cow}; use std::fmt::{self, Debug, Display, Formatter}; use std::hash::{Hash, Hasher}; use std::ops::{Add, AddAssign, Deref, Range}; use comemo::Tracked; use ecow::EcoString; use serde::{Deserialize, Serialize}; use typst_syntax::Spanned; use unicode_normalization::UnicodeNormalization; use un...
rust
Apache-2.0
a87f4b15ca86a0b2f98948d8f393608070ed731e
2026-01-04T15:31:59.400510Z
false
typst/typst
https://github.com/typst/typst/blob/a87f4b15ca86a0b2f98948d8f393608070ed731e/crates/typst-library/src/foundations/dict.rs
crates/typst-library/src/foundations/dict.rs
use std::fmt::{Debug, Formatter}; use std::hash::{Hash, Hasher}; use std::ops::{Add, AddAssign}; use std::sync::Arc; use comemo::Tracked; use ecow::{EcoString, eco_format}; use indexmap::IndexMap; use rustc_hash::FxBuildHasher; use serde::{Deserialize, Deserializer, Serialize, Serializer}; use typst_syntax::is_ident; ...
rust
Apache-2.0
a87f4b15ca86a0b2f98948d8f393608070ed731e
2026-01-04T15:31:59.400510Z
false
typst/typst
https://github.com/typst/typst/blob/a87f4b15ca86a0b2f98948d8f393608070ed731e/crates/typst-library/src/foundations/plugin.rs
crates/typst-library/src/foundations/plugin.rs
use std::fmt::{self, Debug, Formatter}; use std::hash::{Hash, Hasher}; use std::sync::{Arc, Mutex}; use ecow::{EcoString, eco_format}; use typst_syntax::Spanned; use wasmi::Memory; use crate::diag::{At, SourceResult, StrResult, bail}; use crate::engine::Engine; use crate::foundations::{Binding, Bytes, Func, Module, S...
rust
Apache-2.0
a87f4b15ca86a0b2f98948d8f393608070ed731e
2026-01-04T15:31:59.400510Z
false
typst/typst
https://github.com/typst/typst/blob/a87f4b15ca86a0b2f98948d8f393608070ed731e/crates/typst-library/src/foundations/duration.rs
crates/typst-library/src/foundations/duration.rs
use std::fmt::{self, Debug, Formatter}; use std::ops::{Add, Div, Mul, Neg, Sub}; use ecow::{EcoString, eco_format}; use time::ext::NumericalDuration; use crate::foundations::{Repr, func, repr, scope, ty}; /// Represents a positive or negative span of time. #[ty(scope, cast)] #[derive(Copy, Clone, Eq, PartialEq, Ord,...
rust
Apache-2.0
a87f4b15ca86a0b2f98948d8f393608070ed731e
2026-01-04T15:31:59.400510Z
false
typst/typst
https://github.com/typst/typst/blob/a87f4b15ca86a0b2f98948d8f393608070ed731e/crates/typst-library/src/foundations/content/field.rs
crates/typst-library/src/foundations/content/field.rs
use std::fmt::{self, Debug}; use std::hash::Hash; use std::marker::PhantomData; use std::sync::OnceLock; use ecow::{EcoString, eco_format}; use crate::foundations::{ Container, Content, FieldVtable, Fold, FoldFn, IntoValue, NativeElement, Packed, Property, Reflect, Repr, Resolve, StyleChain, }; /// An access...
rust
Apache-2.0
a87f4b15ca86a0b2f98948d8f393608070ed731e
2026-01-04T15:31:59.400510Z
false
typst/typst
https://github.com/typst/typst/blob/a87f4b15ca86a0b2f98948d8f393608070ed731e/crates/typst-library/src/foundations/content/packed.rs
crates/typst-library/src/foundations/content/packed.rs
use std::fmt::{self, Debug, Formatter}; use std::hash::{Hash, Hasher}; use std::marker::PhantomData; use std::ops::{Deref, DerefMut}; use typst_syntax::Span; use crate::foundations::{Content, Label, NativeElement}; use crate::introspection::Location; /// A packed element of a static type. #[derive(Clone)] #[repr(tra...
rust
Apache-2.0
a87f4b15ca86a0b2f98948d8f393608070ed731e
2026-01-04T15:31:59.400510Z
false
typst/typst
https://github.com/typst/typst/blob/a87f4b15ca86a0b2f98948d8f393608070ed731e/crates/typst-library/src/foundations/content/element.rs
crates/typst-library/src/foundations/content/element.rs
use std::any::TypeId; use std::cmp::Ordering; use std::fmt::{self, Debug}; use std::hash::Hash; use std::sync::OnceLock; use ecow::EcoString; use smallvec::SmallVec; use typst_utils::Static; use crate::diag::SourceResult; use crate::engine::Engine; use crate::foundations::{ Args, Content, ContentVtable, FieldAcce...
rust
Apache-2.0
a87f4b15ca86a0b2f98948d8f393608070ed731e
2026-01-04T15:31:59.400510Z
false
typst/typst
https://github.com/typst/typst/blob/a87f4b15ca86a0b2f98948d8f393608070ed731e/crates/typst-library/src/foundations/content/raw.rs
crates/typst-library/src/foundations/content/raw.rs
use std::any::TypeId; use std::fmt::{self, Debug, Formatter}; use std::hash::{Hash, Hasher}; use std::ptr::NonNull; use std::sync::atomic::{self, AtomicUsize, Ordering}; use typst_syntax::Span; use typst_utils::{HashLock, SmallBitSet, fat}; use super::vtable; use crate::foundations::{Element, Label, NativeElement, Pa...
rust
Apache-2.0
a87f4b15ca86a0b2f98948d8f393608070ed731e
2026-01-04T15:31:59.400510Z
false
typst/typst
https://github.com/typst/typst/blob/a87f4b15ca86a0b2f98948d8f393608070ed731e/crates/typst-library/src/foundations/content/mod.rs
crates/typst-library/src/foundations/content/mod.rs
mod element; mod field; mod packed; mod raw; mod vtable; pub use self::element::*; pub use self::field::*; pub use self::packed::Packed; pub use self::vtable::{ContentVtable, FieldVtable}; #[doc(inline)] pub use typst_macros::elem; use std::fmt::{self, Debug, Formatter}; use std::hash::Hash; use std::iter::{self, Sum...
rust
Apache-2.0
a87f4b15ca86a0b2f98948d8f393608070ed731e
2026-01-04T15:31:59.400510Z
false
typst/typst
https://github.com/typst/typst/blob/a87f4b15ca86a0b2f98948d8f393608070ed731e/crates/typst-library/src/foundations/content/vtable.rs
crates/typst-library/src/foundations/content/vtable.rs
//! A custom [vtable] implementation for content. //! //! This is similar to what is generated by the Rust compiler under the hood //! when using trait objects. However, ours has two key advantages: //! //! - It can store a _slice_ of sub-vtables for field-specific operations. //! - It can store not only methods, but a...
rust
Apache-2.0
a87f4b15ca86a0b2f98948d8f393608070ed731e
2026-01-04T15:31:59.400510Z
false
typst/typst
https://github.com/typst/typst/blob/a87f4b15ca86a0b2f98948d8f393608070ed731e/crates/typst-library/src/introspection/introspector.rs
crates/typst-library/src/introspection/introspector.rs
use std::collections::BTreeSet; use std::fmt::{self, Debug, Formatter}; use std::hash::Hash; use std::num::NonZeroUsize; use std::sync::RwLock; use ecow::{EcoString, EcoVec}; use rustc_hash::{FxHashMap, FxHashSet}; use smallvec::SmallVec; use typst_utils::NonZeroExt; use crate::diag::{StrResult, bail}; use crate::fou...
rust
Apache-2.0
a87f4b15ca86a0b2f98948d8f393608070ed731e
2026-01-04T15:31:59.400510Z
false
typst/typst
https://github.com/typst/typst/blob/a87f4b15ca86a0b2f98948d8f393608070ed731e/crates/typst-library/src/introspection/locator.rs
crates/typst-library/src/introspection/locator.rs
use std::fmt::{self, Debug, Formatter}; use std::hash::Hash; use std::sync::OnceLock; use comemo::{Track, Tracked}; use rustc_hash::FxHashMap; use typst_syntax::Span; use crate::diag::{SourceDiagnostic, warning}; use crate::engine::Engine; use crate::introspection::{History, Introspect, Introspector, Location}; /// ...
rust
Apache-2.0
a87f4b15ca86a0b2f98948d8f393608070ed731e
2026-01-04T15:31:59.400510Z
false
typst/typst
https://github.com/typst/typst/blob/a87f4b15ca86a0b2f98948d8f393608070ed731e/crates/typst-library/src/introspection/state.rs
crates/typst-library/src/introspection/state.rs
use comemo::{Track, Tracked, TrackedMut}; use ecow::{EcoString, EcoVec, eco_format, eco_vec}; use typst_syntax::Span; use typst_utils::Protected; use crate::World; use crate::diag::{At, SourceDiagnostic, SourceResult, bail, warning}; use crate::engine::{Engine, Route, Sink, Traced}; use crate::foundations::{ Args,...
rust
Apache-2.0
a87f4b15ca86a0b2f98948d8f393608070ed731e
2026-01-04T15:31:59.400510Z
false
typst/typst
https://github.com/typst/typst/blob/a87f4b15ca86a0b2f98948d8f393608070ed731e/crates/typst-library/src/introspection/convergence.rs
crates/typst-library/src/introspection/convergence.rs
use std::any::{Any, TypeId}; use std::fmt::{Debug, Write}; use std::hash::{Hash, Hasher}; use std::sync::Arc; use comemo::{Track, Tracked}; use ecow::{EcoString, EcoVec, eco_format}; use typst_syntax::Span; use typst_utils::Protected; use crate::World; use crate::diag::{SourceDiagnostic, warning}; use crate::engine::...
rust
Apache-2.0
a87f4b15ca86a0b2f98948d8f393608070ed731e
2026-01-04T15:31:59.400510Z
false
typst/typst
https://github.com/typst/typst/blob/a87f4b15ca86a0b2f98948d8f393608070ed731e/crates/typst-library/src/introspection/here.rs
crates/typst-library/src/introspection/here.rs
use comemo::Tracked; use crate::diag::HintedStrResult; use crate::foundations::{Context, func}; use crate::introspection::Location; /// Provides the current location in the document. /// /// You can think of `here` as a low-level building block that directly extracts /// the current location from the active [context]...
rust
Apache-2.0
a87f4b15ca86a0b2f98948d8f393608070ed731e
2026-01-04T15:31:59.400510Z
false
typst/typst
https://github.com/typst/typst/blob/a87f4b15ca86a0b2f98948d8f393608070ed731e/crates/typst-library/src/introspection/locate.rs
crates/typst-library/src/introspection/locate.rs
use comemo::Tracked; use typst_syntax::Span; use crate::diag::SourceResult; use crate::engine::Engine; use crate::foundations::{Context, LocatableSelector, func}; use crate::introspection::Location; /// Determines the location of an element in the document. /// /// Takes a selector that must match exactly one element...
rust
Apache-2.0
a87f4b15ca86a0b2f98948d8f393608070ed731e
2026-01-04T15:31:59.400510Z
false
typst/typst
https://github.com/typst/typst/blob/a87f4b15ca86a0b2f98948d8f393608070ed731e/crates/typst-library/src/introspection/mod.rs
crates/typst-library/src/introspection/mod.rs
//! Interaction between document parts. mod convergence; mod counter; #[path = "here.rs"] mod here_; mod introspector; #[path = "locate.rs"] mod locate_; mod location; mod locator; mod metadata; #[path = "query.rs"] mod query_; mod state; mod tag; pub use self::convergence::*; pub use self::counter::*; pub use self::...
rust
Apache-2.0
a87f4b15ca86a0b2f98948d8f393608070ed731e
2026-01-04T15:31:59.400510Z
false
typst/typst
https://github.com/typst/typst/blob/a87f4b15ca86a0b2f98948d8f393608070ed731e/crates/typst-library/src/introspection/location.rs
crates/typst-library/src/introspection/location.rs
use std::fmt::{self, Debug, Formatter}; use std::num::NonZeroUsize; use comemo::Tracked; use ecow::{EcoString, eco_format}; use typst_syntax::Span; use crate::diag::{SourceDiagnostic, warning}; use crate::engine::Engine; use crate::foundations::{Content, IntoValue, Repr, Selector, func, repr, scope, ty}; use crate::i...
rust
Apache-2.0
a87f4b15ca86a0b2f98948d8f393608070ed731e
2026-01-04T15:31:59.400510Z
false
typst/typst
https://github.com/typst/typst/blob/a87f4b15ca86a0b2f98948d8f393608070ed731e/crates/typst-library/src/introspection/query.rs
crates/typst-library/src/introspection/query.rs
use comemo::Tracked; use ecow::{EcoString, EcoVec, eco_format}; use typst_syntax::Span; use super::{History, Introspect}; use crate::diag::{HintedStrResult, SourceDiagnostic, StrResult, warning}; use crate::engine::Engine; use crate::foundations::{ Array, Content, Context, Label, LocatableSelector, Repr, Selector,...
rust
Apache-2.0
a87f4b15ca86a0b2f98948d8f393608070ed731e
2026-01-04T15:31:59.400510Z
false
typst/typst
https://github.com/typst/typst/blob/a87f4b15ca86a0b2f98948d8f393608070ed731e/crates/typst-library/src/introspection/counter.rs
crates/typst-library/src/introspection/counter.rs
use std::fmt::Write; use std::num::NonZeroUsize; use std::str::FromStr; use comemo::{Track, Tracked, TrackedMut}; use ecow::{EcoString, EcoVec, eco_format, eco_vec}; use smallvec::{SmallVec, smallvec}; use typst_syntax::Span; use typst_utils::{NonZeroExt, Protected}; use crate::World; use crate::diag::{At, HintedStrR...
rust
Apache-2.0
a87f4b15ca86a0b2f98948d8f393608070ed731e
2026-01-04T15:31:59.400510Z
false
typst/typst
https://github.com/typst/typst/blob/a87f4b15ca86a0b2f98948d8f393608070ed731e/crates/typst-library/src/introspection/tag.rs
crates/typst-library/src/introspection/tag.rs
use std::fmt::{self, Debug, Formatter}; use crate::diag::{SourceResult, bail}; use crate::engine::Engine; use crate::foundations::{ Args, Construct, Content, NativeElement, Packed, Unlabellable, elem, }; use crate::introspection::Location; /// Marks the start or end of a locatable element. #[derive(Clone, Partial...
rust
Apache-2.0
a87f4b15ca86a0b2f98948d8f393608070ed731e
2026-01-04T15:31:59.400510Z
false
typst/typst
https://github.com/typst/typst/blob/a87f4b15ca86a0b2f98948d8f393608070ed731e/crates/typst-library/src/introspection/metadata.rs
crates/typst-library/src/introspection/metadata.rs
use crate::foundations::{Value, elem}; use crate::introspection::Locatable; /// Exposes a value to the query system without producing visible content. /// /// This element can be retrieved with the [`query`] function and from the /// command line with /// [`typst query`]($reference/introspection/query/#command-line-qu...
rust
Apache-2.0
a87f4b15ca86a0b2f98948d8f393608070ed731e
2026-01-04T15:31:59.400510Z
false
typst/typst
https://github.com/typst/typst/blob/a87f4b15ca86a0b2f98948d8f393608070ed731e/crates/typst-library/src/model/reference.rs
crates/typst-library/src/model/reference.rs
use comemo::Track; use ecow::eco_format; use crate::diag::{At, Hint, SourceResult, bail}; use crate::engine::Engine; use crate::foundations::{ Cast, Content, Context, Func, IntoValue, Label, NativeElement, Packed, Repr, Smart, StyleChain, Synthesize, cast, elem, }; use crate::introspection::{ Counter, Coun...
rust
Apache-2.0
a87f4b15ca86a0b2f98948d8f393608070ed731e
2026-01-04T15:31:59.400510Z
false
typst/typst
https://github.com/typst/typst/blob/a87f4b15ca86a0b2f98948d8f393608070ed731e/crates/typst-library/src/model/link.rs
crates/typst-library/src/model/link.rs
use std::ops::Deref; use std::str::FromStr; use ecow::{EcoString, eco_format}; use typst_syntax::Span; use crate::diag::{At, SourceResult, StrResult, bail}; use crate::engine::Engine; use crate::foundations::{ Args, Construct, Content, Label, Packed, Repr, Selector, ShowSet, Smart, StyleChain, Styles, cast, e...
rust
Apache-2.0
a87f4b15ca86a0b2f98948d8f393608070ed731e
2026-01-04T15:31:59.400510Z
false
typst/typst
https://github.com/typst/typst/blob/a87f4b15ca86a0b2f98948d8f393608070ed731e/crates/typst-library/src/model/par.rs
crates/typst-library/src/model/par.rs
use ecow::eco_format; use typst_utils::singleton; use crate::diag::{HintedStrResult, SourceResult, StrResult, bail}; use crate::engine::Engine; use crate::foundations::{ AlternativeFold, Args, Cast, CastInfo, Construct, Content, Dict, Fold, FromValue, IntoValue, NativeElement, Packed, Reflect, Smart, Unlabella...
rust
Apache-2.0
a87f4b15ca86a0b2f98948d8f393608070ed731e
2026-01-04T15:31:59.400510Z
false
typst/typst
https://github.com/typst/typst/blob/a87f4b15ca86a0b2f98948d8f393608070ed731e/crates/typst-library/src/model/terms.rs
crates/typst-library/src/model/terms.rs
use crate::diag::{bail, warning}; use crate::foundations::{ Array, Content, NativeElement, Packed, Reflect, Smart, Styles, cast, elem, scope, }; use crate::introspection::{Locatable, Tagged}; use crate::layout::{Em, HElem, Length}; use crate::model::{ListItemLike, ListLike}; /// A list of terms and their descripti...
rust
Apache-2.0
a87f4b15ca86a0b2f98948d8f393608070ed731e
2026-01-04T15:31:59.400510Z
false
typst/typst
https://github.com/typst/typst/blob/a87f4b15ca86a0b2f98948d8f393608070ed731e/crates/typst-library/src/model/emph.rs
crates/typst-library/src/model/emph.rs
use crate::foundations::{Content, elem}; use crate::introspection::{Locatable, Tagged}; /// Emphasizes content by toggling italics. /// /// - If the current [text style]($text.style) is `{"normal"}`, this turns it /// into `{"italic"}`. /// - If it is already `{"italic"}` or `{"oblique"}`, it turns it back to /// ...
rust
Apache-2.0
a87f4b15ca86a0b2f98948d8f393608070ed731e
2026-01-04T15:31:59.400510Z
false
typst/typst
https://github.com/typst/typst/blob/a87f4b15ca86a0b2f98948d8f393608070ed731e/crates/typst-library/src/model/title.rs
crates/typst-library/src/model/title.rs
use crate::diag::{Hint, HintedStrResult}; use crate::foundations::{Content, Packed, ShowSet, Smart, StyleChain, Styles, elem}; use crate::introspection::{Locatable, Tagged}; use crate::layout::{BlockElem, Em}; use crate::model::DocumentElem; use crate::text::{FontWeight, TextElem, TextSize}; /// A document title. /// ...
rust
Apache-2.0
a87f4b15ca86a0b2f98948d8f393608070ed731e
2026-01-04T15:31:59.400510Z
false
typst/typst
https://github.com/typst/typst/blob/a87f4b15ca86a0b2f98948d8f393608070ed731e/crates/typst-library/src/model/document.rs
crates/typst-library/src/model/document.rs
use ecow::EcoString; use crate::diag::{HintedStrResult, SourceResult, bail}; use crate::engine::Engine; use crate::foundations::{ Args, Array, Construct, Content, Datetime, OneOrMultiple, Smart, StyleChain, Styles, Value, cast, elem, }; use crate::text::{Locale, TextElem}; /// The root element of a document a...
rust
Apache-2.0
a87f4b15ca86a0b2f98948d8f393608070ed731e
2026-01-04T15:31:59.400510Z
false
typst/typst
https://github.com/typst/typst/blob/a87f4b15ca86a0b2f98948d8f393608070ed731e/crates/typst-library/src/model/list.rs
crates/typst-library/src/model/list.rs
use comemo::Track; use crate::diag::{SourceResult, bail}; use crate::engine::Engine; use crate::foundations::{ Array, Content, Context, Depth, Func, NativeElement, Packed, Smart, StyleChain, Styles, Value, cast, elem, scope, }; use crate::introspection::{Locatable, Tagged}; use crate::layout::{Em, Length}; use...
rust
Apache-2.0
a87f4b15ca86a0b2f98948d8f393608070ed731e
2026-01-04T15:31:59.400510Z
false
typst/typst
https://github.com/typst/typst/blob/a87f4b15ca86a0b2f98948d8f393608070ed731e/crates/typst-library/src/model/table.rs
crates/typst-library/src/model/table.rs
use std::num::{NonZeroU32, NonZeroUsize}; use std::sync::Arc; use ecow::EcoString; use typst_utils::NonZeroExt; use crate::diag::{HintedStrResult, HintedString, SourceResult, bail}; use crate::engine::Engine; use crate::foundations::{ Content, Packed, Smart, StyleChain, Synthesize, cast, elem, scope, }; use crate...
rust
Apache-2.0
a87f4b15ca86a0b2f98948d8f393608070ed731e
2026-01-04T15:31:59.400510Z
false
typst/typst
https://github.com/typst/typst/blob/a87f4b15ca86a0b2f98948d8f393608070ed731e/crates/typst-library/src/model/footnote.rs
crates/typst-library/src/model/footnote.rs
use std::num::NonZeroUsize; use std::str::FromStr; use ecow::{EcoString, eco_format}; use typst_utils::NonZeroExt; use crate::diag::{At, SourceResult, StrResult, bail}; use crate::engine::Engine; use crate::foundations::{ Content, Label, NativeElement, Packed, ShowSet, Smart, StyleChain, Styles, cast, elem, s...
rust
Apache-2.0
a87f4b15ca86a0b2f98948d8f393608070ed731e
2026-01-04T15:31:59.400510Z
false
typst/typst
https://github.com/typst/typst/blob/a87f4b15ca86a0b2f98948d8f393608070ed731e/crates/typst-library/src/model/heading.rs
crates/typst-library/src/model/heading.rs
use std::num::NonZeroUsize; use ecow::EcoString; use typst_utils::NonZeroExt; use crate::diag::SourceResult; use crate::engine::Engine; use crate::foundations::{ Content, NativeElement, Packed, ShowSet, Smart, StyleChain, Styles, Synthesize, elem, }; use crate::introspection::{Count, Counter, CounterUpdate, Locat...
rust
Apache-2.0
a87f4b15ca86a0b2f98948d8f393608070ed731e
2026-01-04T15:31:59.400510Z
false
typst/typst
https://github.com/typst/typst/blob/a87f4b15ca86a0b2f98948d8f393608070ed731e/crates/typst-library/src/model/cite.rs
crates/typst-library/src/model/cite.rs
use typst_syntax::Spanned; use crate::diag::{At, HintedString, SourceResult, error}; use crate::engine::Engine; use crate::foundations::{ Cast, Content, Derived, Label, Packed, Smart, StyleChain, Synthesize, cast, elem, }; use crate::introspection::Locatable; use crate::model::bibliography::Works; use crate::model...
rust
Apache-2.0
a87f4b15ca86a0b2f98948d8f393608070ed731e
2026-01-04T15:31:59.400510Z
false
typst/typst
https://github.com/typst/typst/blob/a87f4b15ca86a0b2f98948d8f393608070ed731e/crates/typst-library/src/model/strong.rs
crates/typst-library/src/model/strong.rs
use crate::foundations::{Content, elem}; use crate::introspection::{Locatable, Tagged}; /// Strongly emphasizes content by increasing the font weight. /// /// Increases the current font weight by a given `delta`. /// /// # Example /// ```example /// This is *strong.* \ /// This is #strong[too.] \ /// /// #show strong:...
rust
Apache-2.0
a87f4b15ca86a0b2f98948d8f393608070ed731e
2026-01-04T15:31:59.400510Z
false
typst/typst
https://github.com/typst/typst/blob/a87f4b15ca86a0b2f98948d8f393608070ed731e/crates/typst-library/src/model/mod.rs
crates/typst-library/src/model/mod.rs
//! Structuring elements that define the document model. mod bibliography; mod cite; mod document; mod emph; #[path = "enum.rs"] mod enum_; mod figure; mod footnote; mod heading; mod link; mod list; #[path = "numbering.rs"] mod numbering_; mod outline; mod par; mod quote; mod reference; mod strong; mod table; mod term...
rust
Apache-2.0
a87f4b15ca86a0b2f98948d8f393608070ed731e
2026-01-04T15:31:59.400510Z
false
typst/typst
https://github.com/typst/typst/blob/a87f4b15ca86a0b2f98948d8f393608070ed731e/crates/typst-library/src/model/bibliography.rs
crates/typst-library/src/model/bibliography.rs
use std::any::TypeId; use std::ffi::OsStr; use std::fmt::{self, Debug, Formatter}; use std::num::NonZeroUsize; use std::path::Path; use std::sync::{Arc, LazyLock}; use comemo::{Track, Tracked}; use ecow::{EcoString, EcoVec, eco_format}; use hayagriva::archive::ArchivedStyle; use hayagriva::io::BibLaTeXError; use hayag...
rust
Apache-2.0
a87f4b15ca86a0b2f98948d8f393608070ed731e
2026-01-04T15:31:59.400510Z
true
typst/typst
https://github.com/typst/typst/blob/a87f4b15ca86a0b2f98948d8f393608070ed731e/crates/typst-library/src/model/figure.rs
crates/typst-library/src/model/figure.rs
use std::borrow::Cow; use std::num::NonZeroUsize; use std::str::FromStr; use ecow::EcoString; use typst_utils::NonZeroExt; use crate::diag::{SourceResult, bail}; use crate::engine::Engine; use crate::foundations::{ Content, Element, NativeElement, Packed, Selector, ShowSet, Smart, StyleChain, Styles, Synthesi...
rust
Apache-2.0
a87f4b15ca86a0b2f98948d8f393608070ed731e
2026-01-04T15:31:59.400510Z
false
typst/typst
https://github.com/typst/typst/blob/a87f4b15ca86a0b2f98948d8f393608070ed731e/crates/typst-library/src/model/outline.rs
crates/typst-library/src/model/outline.rs
use std::num::NonZeroUsize; use std::str::FromStr; use comemo::Tracked; use smallvec::SmallVec; use typst_syntax::Span; use typst_utils::{Get, NonZeroExt}; use crate::diag::{At, HintedStrResult, SourceResult, StrResult, bail, error}; use crate::engine::Engine; use crate::foundations::{ Args, Construct, Content, C...
rust
Apache-2.0
a87f4b15ca86a0b2f98948d8f393608070ed731e
2026-01-04T15:31:59.400510Z
false
typst/typst
https://github.com/typst/typst/blob/a87f4b15ca86a0b2f98948d8f393608070ed731e/crates/typst-library/src/model/numbering.rs
crates/typst-library/src/model/numbering.rs
use std::str::FromStr; use chinese_number::{ ChineseCase, ChineseVariant, from_u64_to_chinese_ten_thousand as u64_to_chinese, }; use comemo::Tracked; use ecow::{EcoString, EcoVec, eco_format}; use crate::diag::SourceResult; use crate::engine::Engine; use crate::foundations::{Context, Func, Str, Value, cast, func}...
rust
Apache-2.0
a87f4b15ca86a0b2f98948d8f393608070ed731e
2026-01-04T15:31:59.400510Z
false
typst/typst
https://github.com/typst/typst/blob/a87f4b15ca86a0b2f98948d8f393608070ed731e/crates/typst-library/src/model/quote.rs
crates/typst-library/src/model/quote.rs
use typst_syntax::Span; use crate::foundations::{ Content, Depth, Label, NativeElement, Packed, ShowSet, Smart, StyleChain, Styles, cast, elem, }; use crate::introspection::{Locatable, Tagged}; use crate::layout::{BlockElem, Em, PadElem}; use crate::model::{CitationForm, CiteElem}; use crate::text::{SmartQuote...
rust
Apache-2.0
a87f4b15ca86a0b2f98948d8f393608070ed731e
2026-01-04T15:31:59.400510Z
false
typst/typst
https://github.com/typst/typst/blob/a87f4b15ca86a0b2f98948d8f393608070ed731e/crates/typst-library/src/model/enum.rs
crates/typst-library/src/model/enum.rs
use std::str::FromStr; use smallvec::SmallVec; use crate::diag::{bail, warning}; use crate::foundations::{ Array, Content, Packed, Reflect, Smart, Styles, cast, elem, scope, }; use crate::introspection::{Locatable, Tagged}; use crate::layout::{Alignment, Em, HAlignment, Length, VAlignment}; use crate::model::{Lis...
rust
Apache-2.0
a87f4b15ca86a0b2f98948d8f393608070ed731e
2026-01-04T15:31:59.400510Z
false
typst/typst
https://github.com/typst/typst/blob/a87f4b15ca86a0b2f98948d8f393608070ed731e/crates/typst-library/src/math/op.rs
crates/typst-library/src/math/op.rs
use ecow::EcoString; use crate::foundations::{Content, NativeElement, Scope, SymbolElem, elem}; use crate::layout::HElem; use crate::math::{Mathy, THIN, upright}; use crate::text::TextElem; /// A text operator in an equation. /// /// # Example /// ```example /// $ tan x = (sin x)/(cos x) $ /// $ op("custom", /// ...
rust
Apache-2.0
a87f4b15ca86a0b2f98948d8f393608070ed731e
2026-01-04T15:31:59.400510Z
false
typst/typst
https://github.com/typst/typst/blob/a87f4b15ca86a0b2f98948d8f393608070ed731e/crates/typst-library/src/math/underover.rs
crates/typst-library/src/math/underover.rs
use crate::foundations::{Content, elem}; use crate::math::Mathy; /// A horizontal line under content. /// /// ```example /// $ underline(1 + 2 + ... + 5) $ /// ``` #[elem(Mathy)] pub struct UnderlineElem { /// The content above the line. #[required] pub body: Content, } /// A horizontal line over content....
rust
Apache-2.0
a87f4b15ca86a0b2f98948d8f393608070ed731e
2026-01-04T15:31:59.400510Z
false
typst/typst
https://github.com/typst/typst/blob/a87f4b15ca86a0b2f98948d8f393608070ed731e/crates/typst-library/src/math/frac.rs
crates/typst-library/src/math/frac.rs
use typst_syntax::Spanned; use crate::diag::bail; use crate::foundations::{Cast, Content, Value, elem}; use crate::math::Mathy; /// A mathematical fraction. /// /// # Example /// ```example /// $ 1/2 < (x+1)/2 $ /// $ ((x+1)) / 2 = frac(a, b) $ /// ``` /// /// # Syntax /// This function also has dedicated syntax: Use...
rust
Apache-2.0
a87f4b15ca86a0b2f98948d8f393608070ed731e
2026-01-04T15:31:59.400510Z
false
typst/typst
https://github.com/typst/typst/blob/a87f4b15ca86a0b2f98948d8f393608070ed731e/crates/typst-library/src/math/root.rs
crates/typst-library/src/math/root.rs
use typst_syntax::Span; use crate::foundations::{Content, NativeElement, elem, func}; use crate::math::Mathy; /// A square root. /// /// ```example /// $ sqrt(3 - 2 sqrt(2)) = sqrt(2) - 1 $ /// ``` #[func(title = "Square Root")] pub fn sqrt( span: Span, /// The expression to take the square root of. radic...
rust
Apache-2.0
a87f4b15ca86a0b2f98948d8f393608070ed731e
2026-01-04T15:31:59.400510Z
false