Skip to main content
Hostdog docs
Documentation & API reference
Main menu
Drupal 7
Drupal 8
Drupal 9
You are here
Home
»
API reference
»
Drupal 8.x
»
Turtle.php
»
EasyRdf_Parser_Turtle
Search Drupal 8.x
Function, class, file, topic, etc.
*
Partial match search is supported
API Navigation
Drupal 8.x
Topics
Classes
Functions
Files
Namespaces
Services
Constants
Globals
Deprecated
public static function EasyRdf_Parser_Turtle::isPrefixChar
@ignore
1 call to EasyRdf_Parser_Turtle::isPrefixChar()
EasyRdf_Parser_Turtle::parseQNameOrBoolean
in drupal/
core/
vendor/
easyrdf/
easyrdf/
lib/
EasyRdf/
Parser/
Turtle.php
Parses qnames and boolean values, which have equivalent starting characters. @ignore
File
drupal/
core/
vendor/
easyrdf/
easyrdf/
lib/
EasyRdf/
Parser/
Turtle.php
, line 1110
Class
EasyRdf_Parser_Turtle
Class to parse Turtle with no external dependancies.
Code
public static
function
isPrefixChar
(
$c
) {
return
self
::
isNameChar
(
$c
); }