MultipleFacts

@Serializable
data class MultipleFacts(val concept: Concept, val timestamp: Long, val values: List<String>) : Fact(source)

Stores multiple related pieces of information about a concept. Used when the concept represents a collection of related facts that should be stored and retrieved together.

Example: List of project dependencies, coding style rules, or environment variables

Constructors

Link copied to clipboard
constructor(concept: Concept, timestamp: Long, values: List<String>)

Properties

Link copied to clipboard
open override val concept: Concept
Link copied to clipboard
open override val timestamp: Long
Link copied to clipboard