tensorflow::
#include <string_ops.h>
Optional attribute setters for StringLength.
Summary
| Public attributes | |
|---|---|
| unit_ = "BYTE" | StringPiece | 
| Public functions | |
|---|---|
| Unit(StringPiece x) | TF_MUST_USE_RESULT AttrsThe unit that is counted to compute string length.  | 
Public attributes
unit_
StringPiece tensorflow::ops::StringLength::Attrs::unit_ = "BYTE"
Public functions
Unit
TF_MUST_USE_RESULT Attrs tensorflow::ops::StringLength::Attrs::Unit( StringPiece x )
The unit that is counted to compute string length.
One of: "BYTE" (for the number of bytes in each string) or "UTF8_CHAR" (for the number of UTF-8 encoded Unicode code points in each string). Results are undefined if unit=UTF8_CHAR and the input strings do not contain structurally valid UTF-8.
Defaults to "BYTE"