Nothing
setGeneric( "has", function( object, name, ... ){
standardGeneric( "has" )
} )
._has_message <- function( object, name, ...){
if (!.Call(Message__field_exists, object@pointer, name)) {
return(NULL)
} else {
return(.Call(Message__has_field, object@pointer, name))
}
}
._has_enum_name <- function( object, name, ...){
return(.Call(has_enum_name, object@pointer, name))
}
setMethod( "has", "Message", ._has_message )
setMethod( "has", "EnumDescriptor", ._has_enum_name)
Any scripts or data that you put into this service are public.
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.