SearchScoreFunctionBuilderTDocumentLog Method |
Creates a function that calculates the base-10 logarithm of a number.
Namespace:
MongoDB.Driver.Search
Assembly:
MongoDB.Driver (in MongoDB.Driver.dll) Version: 2.19.1+3a2a09dd959482f665ffbb5df2557ec541597af4
Syntax public SearchScoreFunction<TDocument> Log(
SearchScoreFunction<TDocument> operand
)
Public Function Log (
operand As SearchScoreFunction(Of TDocument)
) As SearchScoreFunction(Of TDocument)
member Log :
operand : SearchScoreFunction<'TDocument> -> SearchScoreFunction<'TDocument>
Parameters
- operand
- Type: MongoDB.Driver.SearchSearchScoreFunctionTDocument
The number.
Return Value
Type:
SearchScoreFunctionTDocumentA logarithmic score function.
See Also